a12-5-10.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. name: Build Android 12 - 5.10
  2. on:
  3. workflow_call:
  4. inputs:
  5. ksu_commit:
  6. type: string
  7. required: false
  8. default: ''
  9. feature_set:
  10. type: string
  11. required: false
  12. default: 'WKSU+SUSFS+BBG'
  13. jobs:
  14. build:
  15. runs-on: ubuntu-latest
  16. name: "Android 12 - 5.10"
  17. strategy:
  18. fail-fast: false
  19. matrix:
  20. kernel_version:
  21. - "5.10.43-android12-2021-08"
  22. - "5.10.43-android12-2021-09"
  23. - "5.10.43-android12-2021-10"
  24. - "5.10.66-android12-2021-11"
  25. - "5.10.66-android12-2021-12"
  26. - "5.10.66-android12-2022-01"
  27. - "5.10.81-android12-2022-02"
  28. - "5.10.81-android12-2022-03"
  29. - "5.10.101-android12-2022-04"
  30. - "5.10.101-android12-2022-05"
  31. - "5.10.110-android12-2022-06"
  32. - "5.10.110-android12-2022-07"
  33. - "5.10.117-android12-2022-08"
  34. - "5.10.117-android12-2022-09"
  35. - "5.10.136-android12-2022-10"
  36. - "5.10.136-android12-2022-11"
  37. - "5.10.149-android12-2022-12"
  38. - "5.10.149-android12-2023-01"
  39. - "5.10.160-android12-2023-02"
  40. - "5.10.160-android12-2023-03"
  41. - "5.10.168-android12-2023-04"
  42. - "5.10.168-android12-2023-05"
  43. - "5.10.177-android12-2023-06"
  44. - "5.10.177-android12-2023-07"
  45. - "5.10.185-android12-2023-09"
  46. - "5.10.198-android12-2023-11"
  47. - "5.10.198-android12-2024-01"
  48. - "5.10.205-android12-2024-03"
  49. - "5.10.209-android12-2024-05"
  50. - "5.10.218-android12-2024-08"
  51. - "5.10.226-android12-2024-11"
  52. - "5.10.233-android12-2025-02"
  53. - "5.10.236-android12-2025-05"
  54. - "5.10.237-android12-2025-06"
  55. - "5.10.240-android12-2025-09"
  56. - "5.10.246-android12-2025-12"
  57. uses: ./.github/workflows/build.yml
  58. secrets: inherit
  59. with:
  60. kernel_version: ${{ matrix.kernel_version }}
  61. ksu_commit: ${{ inputs.ksu_commit }}
  62. feature_set: ${{ inputs.feature_set }}