Skip to content

Commit 47c7410

Browse files
committed
re-generate workflows
1 parent 7d6b676 commit 47c7410

15 files changed

+318
-215
lines changed

.github/workflows/build-darwin-arm64.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------------------------------------------------------
2-
# DO NOT EDIT! Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/*.
2+
# DO NOT EDIT!
3+
# Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/workflows/*.
34
#
45
# This file is part of the xPack distribution.
56
# (https://xpack.github.io)
@@ -59,7 +60,7 @@ on:
5960
helper-git-ref:
6061
description: 'The helper branch, tag or SHA to checkout'
6162
required: false
62-
default: 'xpack-develop'
63+
default: 'xpack-development'
6364

6465
jobs:
6566

@@ -105,27 +106,27 @@ jobs:
105106
106107
- name: 'Install project dependencies'
107108
timeout-minutes: 1440
108-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
109+
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
109110

110111
- name: 'Build darwin-arm64 binaries'
111112
timeout-minutes: 1440
112113
run: |
113-
xpm install --config darwin-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
114-
xpm run build --config darwin-arm64
114+
xpm install --config darwin-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
115+
xpm run build --config darwin-arm64 -C build-assets
115116
116117
- name: Upload platform artefacts
117118
uses: actions/upload-artifact@v4
118119
with:
119120
name: deploy-darwin-arm64
120-
path: ${{ github.workspace }}/build/darwin-arm64/deploy/*
121+
path: ${{ github.workspace }}/build-assets/build/darwin-arm64/deploy/*
121122
overwrite: true
122123

123124
- name: 'Publish pre-release'
124125
# https://github.com/ncipollo/release-action
125126
uses: ncipollo/[email protected]
126127
with:
127128
allowUpdates: true
128-
artifacts: 'build/darwin-arm64/deploy/*'
129+
artifacts: 'build-assets/build/darwin-arm64/deploy/*'
129130
bodyFile: '.github/workflows/body-github-pre-releases-test.md'
130131
commit: 'master'
131132
draft: false
@@ -142,7 +143,7 @@ jobs:
142143

143144
- name: 'Rename working area'
144145
# For just in case absolute paths remain unprocessed.
145-
run: mv -v build build-$(date -u +%Y%m%d-%H%M%S)
146+
run: mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
146147

147148
darwin-arm64-test:
148149
name: 'darwin-arm64 qemu-riscv ${{ github.event.inputs.version }} test'
@@ -177,16 +178,16 @@ jobs:
177178
uses: actions/checkout@v4
178179
with:
179180
repository: xpack-dev-tools/xbb-helper-xpack
180-
path: xpacks/@xpack-dev-tools/xbb-helper
181+
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
181182
ref: ${{ github.event.inputs.helper-git-ref }}
182183
fetch-depth: 3
183184

184185
- name: 'Run ${{ github.event.inputs.version }} native test'
185-
run: bash scripts/test.sh --version ${{ github.event.inputs.version }} --base-url pre-release
186+
run: bash build-assets/scripts/test.sh --version ${{ github.event.inputs.version }} --base-url pre-release
186187

187188
- name: Upload platform tests report
188189
uses: actions/upload-artifact@v4
189190
with:
190191
name: tests-report-darwin-arm64
191-
path: ${{ github.workspace }}/build/darwin-arm64/artefacts/tests-report-*.md
192+
path: ${{ github.workspace }}/build-assets/build/darwin-arm64/artefacts/tests-report-*.md
192193
overwrite: true

.github/workflows/build-darwin-x64.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------------------------------------------------------
2-
# DO NOT EDIT! Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/*.
2+
# DO NOT EDIT!
3+
# Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/workflows/*.
34
#
45
# This file is part of the xPack distribution.
56
# (https://xpack.github.io)
@@ -59,7 +60,7 @@ on:
5960
helper-git-ref:
6061
description: 'The helper branch, tag or SHA to checkout'
6162
required: false
62-
default: 'xpack-develop'
63+
default: 'xpack-development'
6364

6465
jobs:
6566

@@ -105,27 +106,27 @@ jobs:
105106
106107
- name: 'Install project dependencies'
107108
timeout-minutes: 1440
108-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
109+
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
109110

110111
- name: 'Build darwin-x64 binaries'
111112
timeout-minutes: 1440
112113
run: |
113-
xpm install --config darwin-x64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
114-
xpm run build --config darwin-x64
114+
xpm install --config darwin-x64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
115+
xpm run build --config darwin-x64 -C build-assets
115116
116117
- name: Upload platform artefacts
117118
uses: actions/upload-artifact@v4
118119
with:
119120
name: deploy-darwin-x64
120-
path: ${{ github.workspace }}/build/darwin-x64/deploy/*
121+
path: ${{ github.workspace }}/build-assets/build/darwin-x64/deploy/*
121122
overwrite: true
122123

123124
- name: 'Publish pre-release'
124125
# https://github.com/ncipollo/release-action
125126
uses: ncipollo/[email protected]
126127
with:
127128
allowUpdates: true
128-
artifacts: 'build/darwin-x64/deploy/*'
129+
artifacts: 'build-assets/build/darwin-x64/deploy/*'
129130
bodyFile: '.github/workflows/body-github-pre-releases-test.md'
130131
commit: 'master'
131132
draft: false
@@ -142,7 +143,7 @@ jobs:
142143

143144
- name: 'Rename working area'
144145
# For just in case absolute paths remain unprocessed.
145-
run: mv -v build build-$(date -u +%Y%m%d-%H%M%S)
146+
run: mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
146147

147148
darwin-x64-test:
148149
name: 'darwin-x64 qemu-riscv ${{ github.event.inputs.version }} test'
@@ -177,16 +178,16 @@ jobs:
177178
uses: actions/checkout@v4
178179
with:
179180
repository: xpack-dev-tools/xbb-helper-xpack
180-
path: xpacks/@xpack-dev-tools/xbb-helper
181+
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
181182
ref: ${{ github.event.inputs.helper-git-ref }}
182183
fetch-depth: 3
183184

184185
- name: 'Run ${{ github.event.inputs.version }} native test'
185-
run: bash scripts/test.sh --version ${{ github.event.inputs.version }} --base-url pre-release
186+
run: bash build-assets/scripts/test.sh --version ${{ github.event.inputs.version }} --base-url pre-release
186187

187188
- name: Upload platform tests report
188189
uses: actions/upload-artifact@v4
189190
with:
190191
name: tests-report-darwin-x64
191-
path: ${{ github.workspace }}/build/darwin-x64/artefacts/tests-report-*.md
192+
path: ${{ github.workspace }}/build-assets/build/darwin-x64/artefacts/tests-report-*.md
192193
overwrite: true

.github/workflows/build-linux-arm.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------------------------------------------------------
2-
# DO NOT EDIT! Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/*.
2+
# DO NOT EDIT!
3+
# Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/workflows/*.
34
#
45
# This file is part of the xPack distribution.
56
# (https://xpack.github.io)
@@ -59,7 +60,7 @@ on:
5960
helper-git-ref:
6061
description: 'The helper branch, tag or SHA to checkout'
6162
required: false
62-
default: 'xpack-develop'
63+
default: 'xpack-development'
6364

6465
jobs:
6566

@@ -103,13 +104,13 @@ jobs:
103104
104105
- name: 'Install project dependencies'
105106
timeout-minutes: 1440
106-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
107+
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
107108

108109
- name: 'Build linux-arm binaries'
109110
timeout-minutes: 1440
110111
run: |
111-
xpm install --config linux-arm --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
112-
xpm run build --config linux-arm
112+
xpm install --config linux-arm --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
113+
xpm run build --config linux-arm -C build-assets
113114
114115
linux-arm-upload:
115116
name: 'linux-arm qemu-riscv ${{ github.event.inputs.version }} upload'
@@ -136,15 +137,15 @@ jobs:
136137
uses: actions/upload-artifact@v4
137138
with:
138139
name: deploy-linux-arm
139-
path: ${{ github.workspace }}/build/linux-arm/deploy/*
140+
path: ${{ github.workspace }}/build-assets/build/linux-arm/deploy/*
140141
overwrite: true
141142

142143
- name: 'Publish pre-release'
143144
# https://github.com/ncipollo/release-action
144145
uses: ncipollo/[email protected] # v1.13 for 18.04
145146
with:
146147
allowUpdates: true
147-
artifacts: 'build/linux-arm/deploy/*'
148+
artifacts: 'build-assets/build/linux-arm/deploy/*'
148149
bodyFile: '.github/workflows/body-github-pre-releases-test.md'
149150
commit: 'master'
150151
draft: false
@@ -161,7 +162,7 @@ jobs:
161162

162163
- name: 'Rename working area'
163164
# For just in case absolute paths remain unprocessed.
164-
run: echo mv -v build build-$(date -u +%Y%m%d-%H%M%S)
165+
run: echo mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
165166

166167
linux-arm-test:
167168
name: 'linux-arm qemu-riscv@${{ github.event.inputs.version }} test'
@@ -193,19 +194,19 @@ jobs:
193194
uses: actions/checkout@v4
194195
with:
195196
repository: xpack-dev-tools/xbb-helper-xpack
196-
path: xpacks/@xpack-dev-tools/xbb-helper
197+
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
197198
ref: ${{ github.event.inputs.helper-git-ref }}
198199
fetch-depth: 3
199200

200201
- name: 'Run ${{ github.event.inputs.version }} docker test'
201202
uses: docker://arm32v7/node:lts-slim # Currently based on debian:12-slim
202203
with:
203204
entrypoint: /bin/bash # /usr/bin/linux32
204-
args: /github/workspace/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release
205+
args: /github/workspace/build-assets/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release
205206

206207
- name: Upload platform tests report
207208
uses: actions/upload-artifact@v4
208209
with:
209210
name: tests-report-linux-arm
210-
path: ${{ github.workspace }}/build/linux-arm/artefacts/tests-report-*.md
211+
path: ${{ github.workspace }}/build-assets/build/linux-arm/artefacts/tests-report-*.md
211212
overwrite: true

.github/workflows/build-linux-arm64.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------------------------------------------------------
2-
# DO NOT EDIT! Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/*.
2+
# DO NOT EDIT!
3+
# Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/workflows/*.
34
#
45
# This file is part of the xPack distribution.
56
# (https://xpack.github.io)
@@ -59,7 +60,7 @@ on:
5960
helper-git-ref:
6061
description: 'The helper branch, tag or SHA to checkout'
6162
required: false
62-
default: 'xpack-develop'
63+
default: 'xpack-development'
6364

6465
jobs:
6566

@@ -103,13 +104,13 @@ jobs:
103104
104105
- name: 'Install project dependencies'
105106
timeout-minutes: 1440
106-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
107+
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
107108

108109
- name: 'Build linux-arm64 binaries'
109110
timeout-minutes: 1440
110111
run: |
111-
xpm install --config linux-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
112-
xpm run build --config linux-arm64
112+
xpm install --config linux-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
113+
xpm run build --config linux-arm64 -C build-assets
113114
114115
linux-arm64-upload:
115116
name: 'linux-arm64 qemu-riscv ${{ github.event.inputs.version }} upload'
@@ -137,15 +138,15 @@ jobs:
137138
uses: actions/upload-artifact@v4
138139
with:
139140
name: deploy-linux-arm64
140-
path: ${{ github.workspace }}/build/linux-arm64/deploy/*
141+
path: ${{ github.workspace }}/build-assets/build/linux-arm64/deploy/*
141142
overwrite: true
142143

143144
- name: 'Publish pre-release'
144145
# https://github.com/ncipollo/release-action
145146
uses: ncipollo/[email protected] # v1.13 for 18.04
146147
with:
147148
allowUpdates: true
148-
artifacts: 'build/linux-arm64/deploy/*'
149+
artifacts: 'build-assets/build/linux-arm64/deploy/*'
149150
bodyFile: '.github/workflows/body-github-pre-releases-test.md'
150151
commit: 'master'
151152
draft: false
@@ -162,7 +163,7 @@ jobs:
162163

163164
- name: 'Rename working area'
164165
# For just in case absolute paths remain unprocessed.
165-
run: echo mv -v build build-$(date -u +%Y%m%d-%H%M%S)
166+
run: echo mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
166167

167168
linux-arm64-test:
168169
name: 'linux-arm64 qemu-riscv ${{ github.event.inputs.version }} test'
@@ -194,19 +195,19 @@ jobs:
194195
uses: actions/checkout@v4
195196
with:
196197
repository: xpack-dev-tools/xbb-helper-xpack
197-
path: xpacks/@xpack-dev-tools/xbb-helper
198+
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
198199
ref: ${{ github.event.inputs.helper-git-ref }}
199200
fetch-depth: 3
200201

201202
- name: 'Run ${{ github.event.inputs.version }} docker test'
202203
uses: docker://node:lts-slim # Currently based on debian:12-slim
203204
with:
204205
entrypoint: /bin/bash
205-
args: /github/workspace/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release
206+
args: /github/workspace/build-assets/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release
206207

207208
- name: Upload platform tests report
208209
uses: actions/upload-artifact@v4
209210
with:
210211
name: tests-report-linux-arm64
211-
path: ${{ github.workspace }}/build/linux-arm64/artefacts/tests-report-*.md
212+
path: ${{ github.workspace }}/build-assets/build/linux-arm64/artefacts/tests-report-*.md
212213
overwrite: true

.github/workflows/build-linux-x64.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------------------------------------------------------
2-
# DO NOT EDIT! Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/*.
2+
# DO NOT EDIT!
3+
# Generated from xpacks/@xpack-dev-tools/xbb-helper/templates/workflows/*.
34
#
45
# This file is part of the xPack distribution.
56
# (https://xpack.github.io)
@@ -59,7 +60,7 @@ on:
5960
helper-git-ref:
6061
description: 'The helper branch, tag or SHA to checkout'
6162
required: false
62-
default: 'xpack-develop'
63+
default: 'xpack-development'
6364

6465
jobs:
6566

@@ -103,13 +104,13 @@ jobs:
103104
104105
- name: 'Install project dependencies'
105106
timeout-minutes: 1440
106-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
107+
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
107108

108109
- name: 'Build linux-x64 binaries'
109110
timeout-minutes: 1440
110111
run: |
111-
xpm install --config linux-x64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }}
112-
xpm run build --config linux-x64
112+
xpm install --config linux-x64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
113+
xpm run build --config linux-x64 -C build-assets
113114
114115
linux-x64-upload:
115116
name: 'linux-x64 qemu-riscv ${{ github.event.inputs.version }} upload'
@@ -142,7 +143,7 @@ jobs:
142143
uses: ncipollo/[email protected] # v1.13 for 18.04
143144
with:
144145
allowUpdates: true
145-
artifacts: 'build/linux-x64/deploy/*'
146+
artifacts: 'build-assets/build/linux-x64/deploy/*'
146147
bodyFile: '.github/workflows/body-github-pre-releases-test.md'
147148
commit: 'master'
148149
draft: false
@@ -159,7 +160,7 @@ jobs:
159160

160161
- name: 'Rename working area'
161162
# For just in case absolute paths remain unprocessed.
162-
run: echo mv -v build build-$(date -u +%Y%m%d-%H%M%S)
163+
run: echo mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
163164

164165
linux-x64-test:
165166
name: 'linux-x64 qemu-riscv ${{ github.event.inputs.version }} test'
@@ -185,16 +186,16 @@ jobs:
185186
uses: actions/checkout@v4
186187
with:
187188
repository: xpack-dev-tools/xbb-helper-xpack
188-
path: xpacks/@xpack-dev-tools/xbb-helper
189+
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
189190
ref: ${{ github.event.inputs.helper-git-ref }}
190191
fetch-depth: 3
191192

192193
- name: 'Run ${{ github.event.inputs.version }} native test'
193-
run: bash scripts/test.sh --image github-actions-ubuntu-latest --version ${{ github.event.inputs.version }} --base-url pre-release
194+
run: bash build-assets/scripts/test.sh --image github-actions-ubuntu-latest --version ${{ github.event.inputs.version }} --base-url pre-release
194195

195196
- name: Upload platform tests report
196197
uses: actions/upload-artifact@v4
197198
with:
198199
name: tests-report-linux-x64
199-
path: ${{ github.workspace }}/build/linux-x64/artefacts/tests-report-*.md
200+
path: ${{ github.workspace }}/build-assets/build/linux-x64/artefacts/tests-report-*.md
200201
overwrite: true

0 commit comments

Comments
 (0)