Compile All S9/S9+ kernels #22
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: Compile All S9/S9+ kernels | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- star2qlte_chn_open_defconfig | |
- starqlte_chn_open_defconfig | |
- starqlte_usa_single_defconfig | |
- star2qlte_usa_single_defconfig | |
- starqlte_jpn_defconfig | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run kernel build action | |
uses: Andrey0800770/kernel_build_action@main | |
with: | |
kernel-url: https://github.com/Andrey0800770/samsung_sdm845-kernel | |
kernel-dir: sdm845 | |
kernel-branch: ksu+susfs | |
config: ${{ matrix.config }} | |
arch: arm64 | |
clang-tar: https://github.com/ZyCromerZ/Clang/releases/download/20.0.0git-20250127-release/Clang-20.0.0git-20250127.tar.gz | |
path: $CLANG:$PATH | |
cflags: "CC=clang CROSS_COMPILE=aarch64-linux-gnu-" | |
python: python2 | |
anykernel3: true | |
extra-version: -Rel4 |