forked from tiann/KernelSU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
1,766 additions
and
303 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
name: Build Kernel - Android 14 | ||
on: | ||
push: | ||
branches: ["main", "ci"] | ||
paths: | ||
- ".github/workflows/build-kernel-a14.yml" | ||
- ".github/workflows/gki-kernel.yml" | ||
- ".github/scripts/build_a13.sh" | ||
- "kernel/**" | ||
pull_request: | ||
branches: ["main"] | ||
paths: | ||
- ".github/workflows/build-kernel-a14.yml" | ||
- ".github/workflows/gki-kernel.yml" | ||
- ".github/scripts/build-a13.sh" | ||
- "kernel/**" | ||
workflow_call: | ||
jobs: | ||
build-kernel: | ||
if: github.event_name != 'pull_request' | ||
strategy: | ||
matrix: | ||
include: | ||
- version: "5.15" | ||
sub_level: 110 | ||
os_patch_level: 2023-09 | ||
- version: "6.1" | ||
sub_level: 25 | ||
os_patch_level: 2023-10 | ||
uses: ./.github/workflows/gki-kernel.yml | ||
secrets: inherit | ||
with: | ||
version: android14-${{ matrix.version }} | ||
version_name: android14-${{ matrix.version }}.${{ matrix.sub_level }} | ||
tag: android14-${{ matrix.version }}-${{ matrix.os_patch_level }} | ||
os_patch_level: ${{ matrix.os_patch_level }} | ||
patch_path: ${{ matrix.version }} | ||
upload-artifacts: | ||
needs: build-kernel | ||
runs-on: ubuntu-latest | ||
if: ${{ ( github.event_name != 'pull_request' && github.ref == 'refs/heads/main' ) || github.ref_type == 'tag' || github.ref == 'refs/heads/ci' }} | ||
env: | ||
CHAT_ID: ${{ secrets.CHAT_ID }} | ||
BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
MESSAGE_THREAD_ID: ${{ secrets.MESSAGE_THREAD_ID }} | ||
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | ||
COMMIT_URL: ${{ github.event.head_commit.url }} | ||
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
path: KernelSU | ||
fetch-depth: 0 | ||
|
||
- name: List artifacts | ||
run: | | ||
tree | ||
- name: Download prebuilt toolchain | ||
run: | | ||
AOSP_MIRROR=https://android.googlesource.com | ||
BRANCH=main-kernel-build-2023 | ||
git clone $AOSP_MIRROR/platform/prebuilts/build-tools -b $BRANCH --depth 1 build-tools | ||
git clone $AOSP_MIRROR/kernel/prebuilts/build-tools -b $BRANCH --depth 1 kernel-build-tools | ||
git clone $AOSP_MIRROR/platform/system/tools/mkbootimg -b $BRANCH --depth 1 | ||
pip3 install telethon==1.31.1 | ||
- name: Set boot sign key | ||
env: | ||
BOOT_SIGN_KEY: ${{ secrets.BOOT_SIGN_KEY }} | ||
run: | | ||
if [ ! -z "$BOOT_SIGN_KEY" ]; then | ||
echo "$BOOT_SIGN_KEY" > ./kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem | ||
fi | ||
- name: Setup mutex for uploading | ||
uses: ben-z/[email protected] | ||
|
||
- name: Build boot images | ||
run: | | ||
export AVBTOOL=$GITHUB_WORKSPACE/kernel-build-tools/linux-x86/bin/avbtool | ||
export GZIP=$GITHUB_WORKSPACE/build-tools/path/linux-x86/gzip | ||
export LZ4=$GITHUB_WORKSPACE/build-tools/path/linux-x86/lz4 | ||
export MKBOOTIMG=$GITHUB_WORKSPACE/mkbootimg/mkbootimg.py | ||
export UNPACK_BOOTIMG=$GITHUB_WORKSPACE/mkbootimg/unpack_bootimg.py | ||
cd $GITHUB_WORKSPACE/KernelSU | ||
export VERSION=$(($(git rev-list --count HEAD) + 10200)) | ||
echo "VERSION: $VERSION" | ||
cd - | ||
bash $GITHUB_WORKSPACE/KernelSU/.github/scripts/build_a13.sh | ||
- name: Display structure of boot files | ||
run: ls -R | ||
|
||
- name: Upload images artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: boot-images-android14 | ||
path: Image-android14*/*.img.gz | ||
|
||
check-build-kernel: | ||
if: github.event_name == 'pull_request' | ||
strategy: | ||
matrix: | ||
include: | ||
- version: "5.15" | ||
sub_level: 110 | ||
os_patch_level: 2023-09 | ||
uses: ./.github/workflows/gki-kernel.yml | ||
with: | ||
version: android14-${{ matrix.version }} | ||
version_name: android14-${{ matrix.version }}.${{ matrix.sub_level }} | ||
tag: android14-${{ matrix.version }}-${{ matrix.os_patch_level }} | ||
os_patch_level: ${{ matrix.os_patch_level }} | ||
patch_path: ${{ matrix.version }} |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,8 +54,6 @@ on: | |
required: false | ||
CHAT_ID: | ||
required: false | ||
CACHE_CHAT_ID: | ||
required: false | ||
BOT_TOKEN: | ||
required: false | ||
MESSAGE_THREAD_ID: | ||
|
@@ -128,14 +126,13 @@ jobs: | |
DRIVER_MAKEFILE=$GKI_ROOT/common/drivers/Makefile | ||
grep -q "kernelsu" $DRIVER_MAKEFILE || echo "obj-y += kernelsu/" >> $DRIVER_MAKEFILE | ||
echo "[+] Apply KernelSU patches" | ||
cd $GKI_ROOT/common/ && git apply $GITHUB_WORKSPACE/KernelSU/.github/patches/$PATCH_PATH/*.patch | ||
echo "[+] Patch script/setlocalversion" | ||
sed -i 's/-dirty//g' $GKI_ROOT/common/scripts/setlocalversion | ||
cd $GKI_ROOT/common/ && git apply $GITHUB_WORKSPACE/KernelSU/.github/patches/$PATCH_PATH/*.patch || echo "[-] No patch found" | ||
if [ "$IS_DEBUG_KERNEL" = "true" ]; then | ||
echo "[+] Enable debug features for kernel" | ||
echo "ccflags-y += -DCONFIG_KSU_DEBUG" >> $GITHUB_WORKSPACE/KernelSU/kernel/Makefile | ||
fi | ||
repo status | ||
echo "[+] KernelSU setup done." | ||
- name: Symbol magic | ||
|
@@ -157,19 +154,35 @@ jobs: | |
max-size: 2G | ||
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
|
||
- name: Make working directory clean to avoid dirty | ||
working-directory: android-kernel | ||
run: | | ||
sed -i '/^rfkill_/d' common/android/abi_gki_protected_exports_* | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "KernelSUBot" | ||
cd common/ && git add -A && git commit -a -m "Add KernelSU" | ||
repo status | ||
- name: Build boot.img | ||
working-directory: android-kernel | ||
run: | | ||
if [ ! -z ${{ vars.EXPECTED_SIZE }} ] && [ ! -z ${{ vars.EXPECTED_HASH }} ]; then | ||
export KSU_EXPECTED_SIZE=${{ vars.EXPECTED_SIZE }} | ||
export KSU_EXPECTED_HASH=${{ vars.EXPECTED_HASH }} | ||
fi | ||
CCACHE="/usr/bin/ccache" LTO=thin BUILD_CONFIG=common/build.config.gki.aarch64 build/build.sh | ||
if [ -e build/build.sh ]; then | ||
CCACHE="/usr/bin/ccache" LTO=thin BUILD_CONFIG=common/build.config.gki.aarch64 build/build.sh | ||
else | ||
tools/bazel run --disk_cache=/home/runner/.cache/bazel --config=fast --config=stamp --lto=thin //common:kernel_aarch64_dist -- --dist_dir=dist | ||
fi | ||
- name: Prepare artifacts | ||
id: prepareArtifacts | ||
run: | | ||
OUTDIR=android-kernel/out/${{ inputs.version }}/dist | ||
if [ ! -e $OUTDIR ]; then | ||
OUTDIR=android-kernel/dist | ||
fi | ||
mkdir output | ||
cp $OUTDIR/Image ./output/ | ||
cp $OUTDIR/Image.lz4 ./output/ | ||
|
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
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
Oops, something went wrong.