Kernel CI (SM-J320H) #12
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: Kernel CI (SM-J320H) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Kernel Source | |
uses: actions/checkout@v2 | |
- name: Getting Toolchain | |
run: | | |
sudo apt-get install lib32z1 | |
sudo git clone --depth 1 --branch android-7.1.2_r37 --single-branch https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8 /opt/toolchains/arm-eabi-4.8/ | |
- name: Building Kernel | |
run: | | |
make -j2 j3x3g-dt_defconfig | |
make -j64 | |
- name: Moving Output # CI only | |
run: | | |
mkdir -p /home/runner/work/output | |
cp arch/arm/boot/Image /home/runner/work/output/zImage | |
- name: Uploading Output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: zImage | |
path: /home/runner/work/output/zImage |