|
21 | 21 | description: "Build Bypass" |
22 | 22 | type: boolean |
23 | 23 | default: false |
24 | | - kernel_type: |
25 | | - description: "Kernel Type to Build" |
| 24 | + kernel_build_version: |
| 25 | + description: "Kernel Version to Build" |
26 | 26 | type: choice |
27 | 27 | options: |
28 | 28 | - all |
|
51 | 51 |
|
52 | 52 | jobs: |
53 | 53 | build-a12-5-10: |
54 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a12-5-10' }} |
| 54 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a12-5-10' }} |
55 | 55 | uses: ./.github/workflows/kernel-a12-5-10.yml |
56 | 56 | secrets: inherit |
57 | 57 | with: |
58 | | - ksu_commit: ${{ inputs.ksu_commit }} |
59 | | - build_bypass: ${{ inputs.build_bypass }} |
60 | | - feature_set: ${{ inputs.feature_set }} |
| 58 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 59 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 60 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
61 | 61 |
|
62 | 62 | build-a13-5-10: |
63 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a13-5-10' }} |
| 63 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a13-5-10' }} |
64 | 64 | uses: ./.github/workflows/kernel-a13-5-10.yml |
65 | 65 | secrets: inherit |
66 | 66 | with: |
67 | | - ksu_commit: ${{ inputs.ksu_commit }} |
68 | | - build_bypass: ${{ inputs.build_bypass }} |
69 | | - feature_set: ${{ inputs.feature_set }} |
| 67 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 68 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 69 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
70 | 70 |
|
71 | 71 | build-a13-5-15: |
72 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a13-5-15' }} |
| 72 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a13-5-15' }} |
73 | 73 | uses: ./.github/workflows/kernel-a13-5-15.yml |
74 | 74 | secrets: inherit |
75 | 75 | with: |
76 | | - ksu_commit: ${{ inputs.ksu_commit }} |
77 | | - build_bypass: ${{ inputs.build_bypass }} |
78 | | - feature_set: ${{ inputs.feature_set }} |
| 76 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 77 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 78 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
79 | 79 |
|
80 | 80 | build-a14-5-15: |
81 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a14-5-15' }} |
| 81 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a14-5-15' }} |
82 | 82 | uses: ./.github/workflows/kernel-a14-5-15.yml |
83 | 83 | secrets: inherit |
84 | 84 | with: |
85 | | - ksu_commit: ${{ inputs.ksu_commit }} |
86 | | - build_bypass: ${{ inputs.build_bypass }} |
87 | | - feature_set: ${{ inputs.feature_set }} |
| 85 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 86 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 87 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
88 | 88 |
|
89 | 89 | build-a14-6-1: |
90 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a14-6-1' }} |
| 90 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a14-6-1' }} |
91 | 91 | uses: ./.github/workflows/kernel-a14-6-1.yml |
92 | 92 | secrets: inherit |
93 | 93 | with: |
94 | | - ksu_commit: ${{ inputs.ksu_commit }} |
95 | | - build_bypass: ${{ inputs.build_bypass }} |
96 | | - feature_set: ${{ inputs.feature_set }} |
| 94 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 95 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 96 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
97 | 97 |
|
98 | 98 | build-a15-6-6: |
99 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a15-6-6' }} |
| 99 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a15-6-6' }} |
100 | 100 | uses: ./.github/workflows/kernel-a15-6-6.yml |
101 | 101 | secrets: inherit |
102 | 102 | with: |
103 | | - ksu_commit: ${{ inputs.ksu_commit }} |
104 | | - build_bypass: ${{ inputs.build_bypass }} |
105 | | - feature_set: ${{ inputs.feature_set }} |
| 103 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 104 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 105 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
106 | 106 |
|
107 | 107 | build-a16-6-12: |
108 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'a16-6-12' }} |
| 108 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'a16-6-12' }} |
109 | 109 | uses: ./.github/workflows/kernel-a16-6-12.yml |
110 | 110 | secrets: inherit |
111 | 111 | with: |
112 | | - ksu_commit: ${{ inputs.ksu_commit }} |
113 | | - build_bypass: ${{ inputs.build_bypass }} |
114 | | - feature_set: ${{ inputs.feature_set }} |
| 112 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 113 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 114 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
115 | 115 |
|
116 | 116 | build-lts: |
117 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'lts' || github.event_name == 'push' }} |
| 117 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'lts' || github.event_name == 'push' }} |
118 | 118 | uses: ./.github/workflows/kernel-lts.yml |
119 | 119 | secrets: inherit |
120 | 120 | with: |
121 | | - ksu_commit: ${{ inputs.ksu_commit }} |
122 | | - build_bypass: ${{ inputs.build_bypass }} |
123 | | - feature_set: ${{ inputs.feature_set }} |
| 121 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 122 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 123 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
124 | 124 |
|
125 | 125 | build-custom: |
126 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'custom' }} |
| 126 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'custom' }} |
127 | 127 | uses: ./.github/workflows/kernel-custom.yml |
128 | 128 | secrets: inherit |
129 | 129 | with: |
130 | | - ksu_commit: ${{ inputs.ksu_commit }} |
131 | | - build_bypass: ${{ inputs.build_bypass }} |
132 | | - feature_set: ${{ inputs.feature_set }} |
| 130 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 131 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 132 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
133 | 133 |
|
134 | 134 | build-testing: |
135 | | - if: ${{ inputs.kernel_type == 'all' || inputs.kernel_type == 'testing' || github.event_name == 'push' }} |
| 135 | + if: ${{ inputs.kernel_build_version == 'all' || inputs.kernel_build_version == 'testing' || github.event_name == 'push' }} |
136 | 136 | uses: ./.github/workflows/kernel-testing.yml |
137 | 137 | secrets: inherit |
138 | 138 | with: |
139 | | - ksu_commit: ${{ inputs.ksu_commit }} |
140 | | - build_bypass: ${{ inputs.build_bypass }} |
141 | | - feature_set: ${{ inputs.feature_set }} |
| 139 | + ksu_commit: ${{ inputs.ksu_commit || '' }} |
| 140 | + build_bypass: ${{ inputs.build_bypass || false }} |
| 141 | + feature_set: ${{ inputs.feature_set || 'WKSU+SUSFS+BBG' }} |
| 142 | + |
142 | 143 | rej: |
143 | 144 | if: always() |
144 | 145 | runs-on: ubuntu-latest |
|
0 commit comments