Update build.yml #7
This file contains hidden or 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 Kernel | |
| on: | |
| push: | |
| branches: [ "15.0" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build Kernel | |
| uses: mlm-games/simple-kernel-build-action@v1.1.0 | |
| with: | |
| KERNEL_CLONE_CMD: 'git clone https://github.com/Flouzr/android_kernel_google_wahoo -b 15.0' # PSA: directory and depth=1 are added automatically! | |
| KERNEL_CONFIG: 'wahoo_defconfig' | |
| ARCH: 'arm64' | |
| TOOLCHAIN_CLONE_CMD: 'git clone https://github.com/djb77/aarch64-linux-android-4.9 ./toolchain/gcc' | |
| ENABLE_KSU: 'false' | |
| ENABLE_CCACHE: 'true' |