| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- name: Build Android 12 - 5.10
- on:
- workflow_call:
- inputs:
- ksu_commit:
- type: string
- required: false
- default: ''
- feature_set:
- type: string
- required: false
- default: 'WKSU+SUSFS+BBG'
- jobs:
- build:
- runs-on: ubuntu-latest
- name: "Android 12 - 5.10"
- strategy:
- fail-fast: false
- matrix:
- kernel_version:
- - "5.10.43-android12-2021-08"
- - "5.10.43-android12-2021-09"
- - "5.10.43-android12-2021-10"
- - "5.10.66-android12-2021-11"
- - "5.10.66-android12-2021-12"
- - "5.10.66-android12-2022-01"
- - "5.10.81-android12-2022-02"
- - "5.10.81-android12-2022-03"
- - "5.10.101-android12-2022-04"
- - "5.10.101-android12-2022-05"
- - "5.10.110-android12-2022-06"
- - "5.10.110-android12-2022-07"
- - "5.10.117-android12-2022-08"
- - "5.10.117-android12-2022-09"
- - "5.10.136-android12-2022-10"
- - "5.10.136-android12-2022-11"
- - "5.10.149-android12-2022-12"
- - "5.10.149-android12-2023-01"
- - "5.10.160-android12-2023-02"
- - "5.10.160-android12-2023-03"
- - "5.10.168-android12-2023-04"
- - "5.10.168-android12-2023-05"
- - "5.10.177-android12-2023-06"
- - "5.10.177-android12-2023-07"
- - "5.10.185-android12-2023-09"
- - "5.10.198-android12-2023-11"
- - "5.10.198-android12-2024-01"
- - "5.10.205-android12-2024-03"
- - "5.10.209-android12-2024-05"
- - "5.10.218-android12-2024-08"
- - "5.10.226-android12-2024-11"
- - "5.10.233-android12-2025-02"
- - "5.10.236-android12-2025-05"
- - "5.10.237-android12-2025-06"
- - "5.10.240-android12-2025-09"
- - "5.10.246-android12-2025-12"
- uses: ./.github/workflows/build.yml
- secrets: inherit
- with:
- kernel_version: ${{ matrix.kernel_version }}
- ksu_commit: ${{ inputs.ksu_commit }}
- feature_set: ${{ inputs.feature_set }}
|