upstream ksu; hooks 1.8 #28
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 on push lineage-21-ksu | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ lineage-21-ksu ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout kernel source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Checkout zipper | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: cyberc3dr/AnyKernel3 | |
| path: zipper | |
| - name: Android kernel build | |
| uses: cyberc3dr/android-kernel-actions@onclite | |
| id: build | |
| env: | |
| NAME: onclite | |
| with: | |
| arch: arm64 | |
| compiler: proton-clang/master | |
| defconfig: onclite-perf_defconfig | |
| image: Image | |
| - name: Upload build artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: onclite | |
| path: zipper/*.zip |