Build Lineage-21 Kernel (With KSU) #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
name: Build Lineage-21 Kernel (With KSU) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout kernel source | |
uses: actions/checkout@v3 | |
with: | |
repository: awakened1712/android_kernel_oneplus_sm8350 | |
ref: lineage-21 | |
path: sm8350 | |
fetch-depth: 100 | |
- name: Checkout gcc toolchain | |
uses: actions/checkout@v3 | |
with: | |
repository: mvaisakh/gcc-arm64 | |
ref: 05cb20a52f12389c3f2340b5103485108feae302 | |
path: toolchain | |
- name: Checkout patches | |
uses: actions/checkout@v3 | |
with: | |
ref: build | |
path: patches | |
- name: Apply patches | |
run: | | |
cd sm8350 | |
git submodule add https://github.com/tiann/KernelSU.git | |
git submodule update --init --recursive | |
git apply ../patches/ksu.patch | |
- name: Android kernel build | |
run: | | |
sudo apt install libdebuginfod-dev | |
export PATH="$(pwd)/toolchain/bin:${PATH}" | |
cd sm8350 | |
bash build.sh | |
git log --no-decorate --oneline -n 100 > out/ak3/ChangeLog.txt | |
- name: Upload final output | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-ksu | |
path: | | |
sm8350/out/ak3/ChangeLog.txt | |
sm8350/out/ak3/*.zip |