kernel-wsa.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. name: WSA
  2. permissions:
  3. contents: write # Allow writing to repository contents (for pushing tags)
  4. actions: write # Allows triggering actions
  5. on:
  6. workflow_call: # This allows this workflow to be called from another workflow
  7. inputs:
  8. runner:
  9. required: true
  10. type: string
  11. kernelsu_variant:
  12. required: true
  13. type: string
  14. kernelsu_branch:
  15. required: true
  16. type: string
  17. kernelsu_branch_other:
  18. required: false
  19. type: string
  20. jobs:
  21. build-kernel-wsa-kernelsu-susfs:
  22. strategy:
  23. fail-fast: false
  24. matrix:
  25. include:
  26. - wsa_branch: "5.15.104.4"
  27. wsa_arch: "x86_64"
  28. - wsa_branch: "5.15.104.4"
  29. wsa_arch: "arm64"
  30. uses: ./.github/workflows/build-wsa-kernel.yml
  31. secrets: inherit
  32. with:
  33. android_version: "android13"
  34. kernel_version: "5.15"
  35. wsa_branch: ${{ matrix.wsa_branch }}
  36. wsa_arch: ${{ matrix.wsa_arch }}
  37. runner: ${{ inputs.runner }}
  38. kernelsu_variant: ${{ inputs.kernelsu_variant }}
  39. kernelsu_branch: ${{ inputs.kernelsu_branch }}
  40. kernelsu_branch_other: ${{ inputs.kernelsu_branch_other }}