ci: update build (#129)

1. update kernel ci
2. fix manager build
This commit is contained in:
Ylarod
2023-01-29 11:25:10 +08:00
committed by GitHub
parent e76cf08934
commit b1e279bd2a
7 changed files with 230 additions and 140 deletions

View File

@@ -21,18 +21,6 @@ on:
description: >
Part of branch name of common kernel manifest,
for example: android12-5.10-2021-11
os_version:
required: true
type: string
description: >
Android version,
for example: 12.0.0
os_patch_level:
required: true
type: string
description: >
Part of branch name of common kernel manifest,
for example: 2021-11
patch_path:
required: true
type: string
@@ -49,7 +37,7 @@ on:
default: ksud-aarch64-linux-android
description: >
Artifact name of prebuilt ksud to be embedded
for example: 5.10
for example: ksud-aarch64-linux-android
secrets:
BOOT_SIGN_KEY:
required: false
@@ -71,11 +59,6 @@ jobs:
CCACHE_NOHASHDIR: "true"
CCACHE_MAXSIZE: "2G"
CCACHE_HARDLINK: "true"
OUTPUT_IMAGE_GZ: ${{ inputs.version_name }}-Image.gz
OUTPUT_BOOT: ${{ inputs.version_name }}-boot.img.zip
OUTPUT_BOOT_GZ: ${{ inputs.version_name }}-boot-gz.img.zip
OUTPUT_BOOT_LZ4_LG: ${{ inputs.version_name }}-boot-lz4_lg.img.zip
OUTPUT_BOOT_LZ4_LEGACY: ${{ inputs.version_name }}-boot-lz4_legacy.img.zip
steps:
- uses: actions/checkout@v3
with:
@@ -105,31 +88,6 @@ jobs:
mkdir android-kernel && cd android-kernel
../git-repo/repo init --depth=1 --u https://android.googlesource.com/kernel/manifest -b common-${{ inputs.tag }}
../git-repo/repo sync -j$(nproc --all)
curl -Lo gki-kernel.zip https://dl.google.com/android/gki/gki-certified-boot-${{ inputs.tag }}_r1.zip
unzip gki-kernel.zip
tools/mkbootimg/unpack_bootimg.py --boot_img=$(find . -maxdepth 1 -name "*.img")
- name: Setup version related environment
working-directory: android-kernel
run: |
case ${{ inputs.version }} in
android12-5.10)
export AVBTOOL=./build/build-tools/path/linux-x86/avbtool
;;
android13-5.10 | android13-5.15 )
export AVBTOOL=./build/kernel/build-tools/path/linux-x86/avbtool
;;
*)
export AVBTOOL=$(find ./build -name "avbtool")
echo "find result: $AVBTOOL"
;;
esac
echo "AVBTOOL: $AVBTOOL"
if [ ! -f "$AVBTOOL" ]; then
echo "Don't find AVBTOOL, please fixup this script"
crash_this_workflow
fi
echo "AVBTOOL=$AVBTOOL" >> $GITHUB_ENV
- name: Download prebuilt ksud from artifacts
uses: actions/download-artifact@v3
@@ -168,100 +126,20 @@ jobs:
echo "[+] Add KernelSU symbols"
cat $KSU_ROOT/kernel/export_symbol.txt | awk '{sub("[ \t]+","");print " "$0}' >> $SYMBOL_LIST
- name: Setup boot sign key
if: ${{ ( github.event_name != 'pull_request' && github.ref == 'refs/heads/main' ) || github.ref_type == 'tag' }}
working-directory: android-kernel
env:
BOOT_SIGN_KEY: ${{ secrets.BOOT_SIGN_KEY }}
run: |
if [ ! -z "$BOOT_SIGN_KEY" ]; then
echo "$BOOT_SIGN_KEY" > prebuilts/kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem
fi
- name: Build boot.img
working-directory: android-kernel
run: CCACHE="/usr/bin/ccache" BUILD_BOOT_IMG=1 SKIP_VENDOR_BOOT=1 KERNEL_BINARY=Image GKI_RAMDISK_PREBUILT_BINARY=out/ramdisk AVB_SIGN_BOOT_IMG=1 AVB_BOOT_PARTITION_SIZE=$((64*1024*1024)) AVB_BOOT_ALGORITHM=SHA256_RSA2048 AVB_BOOT_KEY=prebuilts/kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem BOOT_IMAGE_HEADER_VERSION=4 LTO=thin BUILD_CONFIG=common/build.config.gki.aarch64 build/build.sh
- name: Build boot-gz.img
working-directory: android-kernel
run: |
cat out/${{ inputs.version }}/dist/Image | ./prebuilts/build-tools/path/linux-x86/gzip -n -f -9 > out/${{ inputs.version }}/dist/Image.gz
tools/mkbootimg/mkbootimg.py --header_version 4 --kernel ./out/${{ inputs.version }}/dist/Image.gz --ramdisk out/ramdisk --output ./out/${{ inputs.version }}/dist/boot-gz.img --os_version ${{ inputs.os_version }} --os_patch_level ${{ inputs.os_patch_level }}
${{ env.AVBTOOL }} add_hash_footer --partition_name boot --partition_size $((64*1024*1024)) --image out/${{ inputs.version }}/dist/boot-gz.img --algorithm SHA256_RSA2048 --key ./prebuilts/kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem
- name: Build boot-lz4_lg.img
working-directory: android-kernel
run: |
tools/mkbootimg/mkbootimg.py --header_version 4 --kernel ./out/${{ inputs.version }}/dist/Image.lz4 --ramdisk out/ramdisk --output ./out/${{ inputs.version }}/dist/boot-lz4_lg.img --os_version ${{ inputs.os_version }} --os_patch_level ${{ inputs.os_patch_level }}
${{ env.AVBTOOL }} add_hash_footer --partition_name boot --partition_size $((64*1024*1024)) --image out/${{ inputs.version }}/dist/boot-lz4_lg.img --algorithm SHA256_RSA2048 --key ./prebuilts/kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem
- name: Build boot-lz4_legacy.img
working-directory: android-kernel
run: |
cat ./out/${{ inputs.version }}/dist/Image | ./prebuilts/kernel-build-tools/linux-x86/bin/lz4 -l -12 --favor-decSpeed stdin stdout > ./out/${{ inputs.version }}/dist/Image.lz4-legacy
tools/mkbootimg/mkbootimg.py --header_version 4 --kernel ./out/${{ inputs.version }}/dist/Image.lz4-legacy --ramdisk out/ramdisk --output ./out/${{ inputs.version }}/dist/boot-lz4_legacy.img --os_version ${{ inputs.os_version }} --os_patch_level ${{ inputs.os_patch_level }}
${{ env.AVBTOOL }} add_hash_footer --partition_name boot --partition_size $((64*1024*1024)) --image out/${{ inputs.version }}/dist/boot-lz4_legacy.img --algorithm SHA256_RSA2048 --key ./prebuilts/kernel-build-tools/linux-x86/share/avb/testkey_rsa2048.pem
run: CCACHE="/usr/bin/ccache" LTO=thin BUILD_CONFIG=common/build.config.gki.aarch64 build/build.sh
- name: Prepare artifacts
id: prepareArtifacts
run: |
OUTDIR=android-kernel/out/${{ inputs.version }}/dist
cp $OUTDIR/Image.gz $OUTPUT_IMAGE_GZ
zip $OUTPUT_BOOT -j -r $OUTDIR/boot.img
zip $OUTPUT_BOOT_GZ -j -r $OUTDIR/boot-gz.img
zip $OUTPUT_BOOT_LZ4_LG -j -r $OUTDIR/boot-lz4_lg.img
zip $OUTPUT_BOOT_LZ4_LEGACY -j -r $OUTDIR/boot-lz4_legacy.img
mkdir output
cp $OUTDIR/Image ./output/
cp $OUTDIR/Image.lz4 ./output/
- name: Upload Image.gz
- name: Upload Image and Image.gz
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.version_name }}-Image.gz
path: ${{ env.OUTPUT_IMAGE_GZ }}
- name: Upload boot.img
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.version_name }}-boot.img
path: ${{ env.OUTPUT_BOOT }}
- name: Upload boot-gz.img
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.version_name }}-boot-gz.img
path: ${{ env.OUTPUT_BOOT_GZ }}
- name: Upload boot-lz4_lg.img
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.version_name }}-boot-lz4_lg.img
path: ${{ env.OUTPUT_BOOT_LZ4_LG }}
- name: Upload boot-lz4_legacy.img
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.version_name }}-boot-lz4_legacy.img
path: ${{ env.OUTPUT_BOOT_LZ4_LEGACY }}
- name: Setup mutex for uploading
uses: ben-z/gh-action-mutex@v1.0-alpha-7
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' && steps.need_upload.outputs.UPLOAD == 'true'
- name: Upload to telegram
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' && steps.need_upload.outputs.UPLOAD == 'true'
env:
CHAT_ID: ${{ secrets.CHAT_ID }}
CACHE_CHAT_ID: ${{ secrets.CACHE_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 }}
TITLE: kernel-${{ inputs.version_name }}
run: |
if [ ! -z "${{ secrets.BOT_TOKEN }}" ]; then
cd $GITHUB_WORKSPACE/KernelSU
export VERSION=$(git rev-list --count HEAD)
cd -
pip3 install python-telegram-bot
python3 $GITHUB_WORKSPACE/KernelSU/scripts/ksubot.py $OUTPUT_IMAGE_GZ $OUTPUT_BOOT $OUTPUT_BOOT_GZ $OUTPUT_BOOT_LZ4_LG $OUTPUT_BOOT_LZ4_LEGACY
fi
name: Image-${{ inputs.version_name }}_${{ inputs.os_patch_level }}
path: ./output/*