This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
README.md: Small readme fixes (#12) #29
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: Test build kernel | |
on: | |
push: | |
branches: | |
Grass-Unified | |
pull_request: | |
branches: | |
Grass-Unified | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3.5.3 | |
with: | |
fetch-depth: 1 | |
- name: Install packages & setup | |
run: | | |
sudo apt update | |
bash <(curl https://gist.githubusercontent.com/roynatech2544/0feeeb35a6d1782b186990ff2a0b3657/raw/b170134a94dac3594df506716bc7b802add2724b/setup.sh) | |
sudo apt install bison flex libssl-dev | |
cp local.config.sample local.config | |
echo "OBJ=arch/arm64/boot/Image" >> local.config | |
- name: Run build | |
run: | | |
DEVICE=a51 bash build_kernel.sh . ksu | |
- name: Upload kernel | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: GrassKernel.zip | |
path: scripts/packaging/Grass* | |