.github/workflows/Build.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | ||
workflow_dispatch: | ||
jobs: | ||
run_build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repository to the runner | ||
uses: actions/checkout@v4 | ||
- name: Prepare the environment | ||
run: sudo apt update | ||
sudo apt -y upgrade | ||
run: sudo apt -y install python-is-python3 build-essential openssl pip python3-virtualenv python2.7 openssl | ||
Check failure on line 18 in .github/workflows/Build.yml GitHub Actions / .github/workflows/Build.ymlInvalid workflow file
|
||
run: sudo apt-get -y install git-all aptitude make gcc libtinfo5 | ||
run: sudo aptitude -y install libssl-dev | ||
- name: make script file executable | ||
run: chmod +x build_kernel.sh | ||
- name: Run script file | ||
run: ./build_kernel.sh |