-
Notifications
You must be signed in to change notification settings - Fork 778
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
1 parent
d5723fd
commit a86af0d
Showing
1 changed file
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Android 15 6.6 | ||
permissions: | ||
contents: write # Allow writing to repository contents (for pushing tags) | ||
actions: write # Allows triggering actions | ||
|
||
on: | ||
workflow_call: # This allows this workflow to be called from another workflow | ||
inputs: | ||
runner: | ||
required: true | ||
type: string | ||
lto_type: | ||
required: true | ||
type: string | ||
kernelsu_variant: | ||
required: true | ||
type: string | ||
kernelsu_branch: | ||
required: true | ||
type: string | ||
kernelsu_branch_other: | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
build-kernel-a15-6-6-kernelsu-susfs: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
#- sub_level: "30" | ||
# os_patch_level: "2024-08" | ||
#- sub_level: "46" | ||
# os_patch_level: "2024-09" | ||
- sub_level: "50" | ||
os_patch_level: "2024-10" | ||
- sub_level: "56" | ||
os_patch_level: "2024-11" | ||
- sub_level: "57" | ||
os_patch_level: "2024-12" | ||
- sub_level: "58" | ||
os_patch_level: "2025-01" | ||
- sub_level: "66" | ||
os_patch_level: "2025-02" | ||
- sub_level: "X" | ||
os_patch_level: "lts" | ||
uses: ./.github/workflows/gki-kernel.yml | ||
secrets: inherit | ||
with: | ||
android_version: "android15" | ||
kernel_version: "6.6" | ||
sub_level: ${{ matrix.sub_level }} | ||
os_patch_level: ${{ matrix.os_patch_level }} | ||
runner: ${{ inputs.runner }} | ||
lto_type: ${{ inputs.lto_type }} | ||
kernelsu_variant: ${{ inputs.kernelsu_variant }} | ||
kernelsu_branch: ${{ inputs.kernelsu_branch }} | ||
kernelsu_branch_other: ${{ inputs.kernelsu_branch_other }} |