@@ -154,101 +154,101 @@ jobs:
154
154
tag_name : daily-build
155
155
env :
156
156
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
157
- multiarch :
158
- name : Ubuntu Multiarch
159
- runs-on : ubuntu-latest
160
- strategy :
161
- max-parallel : 10
162
- fail-fast : false
163
- matrix :
164
- include :
165
- - distro : ubuntu_latest
166
- architecture : aarch64
167
- repository : v6.8.12
168
- kernel_version : 6.8.12-060812
169
- kernel_version_c : 202405300722
170
- upload : 1
171
- - distro : ubuntu_latest
172
- architecture : aarch64
173
- repository : v6.9.3
174
- kernel_version : 6.9.3-060903
175
- kernel_version_c : 202405300957
176
- upload : 0
177
- steps :
178
- - uses : actions/checkout@v2
179
- - name : Release build
180
- uses : uraimo/run-on-arch-action@v2
181
- if : ${{ startsWith(github.ref, 'refs/tags/') }}
182
- with :
183
- arch : ${{ matrix.architecture }}
184
- distro : ${{ matrix.distro }}
185
- githubToken : ${{ github.token }}
186
- dockerRunArgs : |
187
- --privileged
188
- -v "${{ github.workspace }}:/sources"
189
- env : |
190
- GITHUB_REF: "${{ env.GITHUB_REF }}"
191
- GITHUB_SERVER_URL: "${{ env.GITHUB_SERVER_URL }}"
192
- GITHUB_REPOSITORY: "${{ env.GITHUB_REPOSITORY }}"
193
- GITHUB_RUN_ID: "${{ env.GITHUB_RUN_ID }}"
194
- REPOSITORY: ${{ matrix.repository }}
195
- ARCHITECTURE: ${{ matrix.architecture }}
196
- KERNEL_VERSION: ${{ matrix.kernel_version }}
197
- KERNEL_VERSION_C: ${{ matrix.kernel_version_c }}
198
- QTIFWVER: ${{ env.QTIFWVER }}
199
- UPLOAD: ${{ matrix.upload }}
200
- run : |
201
- cd /sources
202
- echo
203
- echo Install dependencies
204
- echo
205
- chmod +x ports/ci/linux/install_deps.sh
206
- ./ports/ci/linux/install_deps.sh
207
- echo
208
- echo Daily Build
209
- echo
210
- chmod +x ports/ci/linux/build.sh
211
- ./ports/ci/linux/build.sh
212
- echo
213
- echo Daily Deploy
214
- echo
215
- chmod +x ports/ci/linux/deploy.sh
216
- ./ports/ci/linux/deploy.sh
217
- - name : Daily build
218
- uses : uraimo/run-on-arch-action@v2
219
- if : ${{ !startsWith(github.ref, 'refs/tags/') }}
220
- with :
221
- arch : ${{ matrix.architecture }}
222
- distro : ${{ matrix.distro }}
223
- githubToken : ${{ github.token }}
224
- dockerRunArgs : |
225
- --privileged
226
- -v "${{ github.workspace }}:/sources"
227
- env : |
228
- GITHUB_REF: "${{ env.GITHUB_REF }}"
229
- GITHUB_SERVER_URL: "${{ env.GITHUB_SERVER_URL }}"
230
- GITHUB_REPOSITORY: "${{ env.GITHUB_REPOSITORY }}"
231
- GITHUB_RUN_ID: "${{ env.GITHUB_RUN_ID }}"
232
- REPOSITORY: ${{ matrix.repository }}
233
- ARCHITECTURE: ${{ matrix.architecture }}
234
- KERNEL_VERSION: ${{ matrix.kernel_version }}
235
- KERNEL_VERSION_C: ${{ matrix.kernel_version_c }}
236
- QTIFWVER: ${{ env.QTIFWVER }}
237
- DAILY_BUILD: 1
238
- run : |
239
- cd /sources
240
- echo
241
- echo Install dependencies
242
- echo
243
- chmod +x ports/ci/linux/install_deps.sh
244
- ./ports/ci/linux/install_deps.sh
245
- echo
246
- echo Daily Build
247
- echo
248
- chmod +x ports/ci/linux/build.sh
249
- ./ports/ci/linux/build.sh
250
- echo
251
- echo Daily Deploy
252
- echo
253
- chmod +x ports/ci/linux/deploy.sh
254
- ./ports/ci/linux/deploy.sh
157
+ # multiarch:
158
+ # name: Ubuntu Multiarch
159
+ # runs-on: ubuntu-latest
160
+ # strategy:
161
+ # max-parallel: 10
162
+ # fail-fast: false
163
+ # matrix:
164
+ # include:
165
+ # - distro: ubuntu_latest
166
+ # architecture: aarch64
167
+ # repository: v6.8.12
168
+ # kernel_version: 6.8.12-060812
169
+ # kernel_version_c: 202405300722
170
+ # upload: 1
171
+ # - distro: ubuntu_latest
172
+ # architecture: aarch64
173
+ # repository: v6.9.3
174
+ # kernel_version: 6.9.3-060903
175
+ # kernel_version_c: 202405300957
176
+ # upload: 0
177
+ # steps:
178
+ # - uses: actions/checkout@v2
179
+ # - name: Release build
180
+ # uses: uraimo/run-on-arch-action@v2
181
+ # if: ${{ startsWith(github.ref, 'refs/tags/') }}
182
+ # with:
183
+ # arch: ${{ matrix.architecture }}
184
+ # distro: ${{ matrix.distro }}
185
+ # githubToken: ${{ github.token }}
186
+ # dockerRunArgs: |
187
+ # --privileged
188
+ # -v "${{ github.workspace }}:/sources"
189
+ # env: |
190
+ # GITHUB_REF: "${{ env.GITHUB_REF }}"
191
+ # GITHUB_SERVER_URL: "${{ env.GITHUB_SERVER_URL }}"
192
+ # GITHUB_REPOSITORY: "${{ env.GITHUB_REPOSITORY }}"
193
+ # GITHUB_RUN_ID: "${{ env.GITHUB_RUN_ID }}"
194
+ # REPOSITORY: ${{ matrix.repository }}
195
+ # ARCHITECTURE: ${{ matrix.architecture }}
196
+ # KERNEL_VERSION: ${{ matrix.kernel_version }}
197
+ # KERNEL_VERSION_C: ${{ matrix.kernel_version_c }}
198
+ # QTIFWVER: ${{ env.QTIFWVER }}
199
+ # UPLOAD: ${{ matrix.upload }}
200
+ # run: |
201
+ # cd /sources
202
+ # echo
203
+ # echo Install dependencies
204
+ # echo
205
+ # chmod +x ports/ci/linux/install_deps.sh
206
+ # ./ports/ci/linux/install_deps.sh
207
+ # echo
208
+ # echo Daily Build
209
+ # echo
210
+ # chmod +x ports/ci/linux/build.sh
211
+ # ./ports/ci/linux/build.sh
212
+ # echo
213
+ # echo Daily Deploy
214
+ # echo
215
+ # chmod +x ports/ci/linux/deploy.sh
216
+ # ./ports/ci/linux/deploy.sh
217
+ # - name: Daily build
218
+ # uses: uraimo/run-on-arch-action@v2
219
+ # if: ${{ !startsWith(github.ref, 'refs/tags/') }}
220
+ # with:
221
+ # arch: ${{ matrix.architecture }}
222
+ # distro: ${{ matrix.distro }}
223
+ # githubToken: ${{ github.token }}
224
+ # dockerRunArgs: |
225
+ # --privileged
226
+ # -v "${{ github.workspace }}:/sources"
227
+ # env: |
228
+ # GITHUB_REF: "${{ env.GITHUB_REF }}"
229
+ # GITHUB_SERVER_URL: "${{ env.GITHUB_SERVER_URL }}"
230
+ # GITHUB_REPOSITORY: "${{ env.GITHUB_REPOSITORY }}"
231
+ # GITHUB_RUN_ID: "${{ env.GITHUB_RUN_ID }}"
232
+ # REPOSITORY: ${{ matrix.repository }}
233
+ # ARCHITECTURE: ${{ matrix.architecture }}
234
+ # KERNEL_VERSION: ${{ matrix.kernel_version }}
235
+ # KERNEL_VERSION_C: ${{ matrix.kernel_version_c }}
236
+ # QTIFWVER: ${{ env.QTIFWVER }}
237
+ # DAILY_BUILD: 1
238
+ # run: |
239
+ # cd /sources
240
+ # echo
241
+ # echo Install dependencies
242
+ # echo
243
+ # chmod +x ports/ci/linux/install_deps.sh
244
+ # ./ports/ci/linux/install_deps.sh
245
+ # echo
246
+ # echo Daily Build
247
+ # echo
248
+ # chmod +x ports/ci/linux/build.sh
249
+ # ./ports/ci/linux/build.sh
250
+ # echo
251
+ # echo Daily Deploy
252
+ # echo
253
+ # chmod +x ports/ci/linux/deploy.sh
254
+ # ./ports/ci/linux/deploy.sh
0 commit comments