build #5
Workflow file for this run
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
name: build | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: Install packages & setup | |
run: | | |
sudo apt update | |
sudo apt purge firefox -y | |
sudo apt upgrade | |
sudo apt -y install wget python3 | |
bash init_clang_12.sh | |
- name: Run build | |
run: | | |
export PATH=$PWD/toolchain/proton-clang/bin:$PATH | |
bash auto_workflow_clang.sh | |
- name: Upload kernel | |
uses: actions/[email protected] | |
with: | |
name: N_kernel_Proton-Clang_12 | |
path: AIK/N_KERNEL.*_PROTON_CLANG_12_LATEST.zip |