Skip to content

Commit 5338174

Browse files
committed
re-generate workflows
1 parent 395e3f4 commit 5338174

13 files changed

+307
-309
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ on:
6565
jobs:
6666

6767
darwin-arm64-build:
68-
name: 'darwin-arm64 qemu-riscv ${{ github.event.inputs.version }} build'
68+
name: 'darwin-arm64 qemu-riscv ${{github.event.inputs.version}} build'
6969
timeout-minutes: 2880 # 2 days
7070

7171
runs-on: [self-hosted, macos, apple]
@@ -101,24 +101,24 @@ jobs:
101101
- name: 'Install xpm'
102102
timeout-minutes: 1440
103103
run: |
104-
npm install --location=global xpm@${{ github.event.inputs.xpm_version }}
104+
npm install --location=global xpm@${{github.event.inputs.xpm_version}}
105105
xpm --version
106106
107107
- name: 'Install project dependencies'
108108
timeout-minutes: 1440
109-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
109+
run: xpm install --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
110110

111111
- name: 'Build darwin-arm64 binaries'
112112
timeout-minutes: 1440
113113
run: |
114-
xpm install --config darwin-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
114+
xpm install --config darwin-arm64 --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
115115
xpm run build --config darwin-arm64 -C build-assets
116116
117117
- name: Upload platform artefacts
118118
uses: actions/upload-artifact@v4
119119
with:
120120
name: deploy-darwin-arm64
121-
path: ${{ github.workspace }}/build-assets/build/darwin-arm64/deploy/*
121+
path: ${{github.workspace}}/build-assets/build/darwin-arm64/deploy/*
122122
overwrite: true
123123

124124
- name: 'Publish pre-release'
@@ -139,14 +139,14 @@ jobs:
139139
replacesArtifacts: true
140140
repo: 'pre-releases'
141141
tag: 'test'
142-
token: ${{ secrets.PUBLISH_TOKEN }}
142+
token: ${{secrets.PUBLISH_TOKEN}}
143143

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

148148
darwin-arm64-test:
149-
name: 'darwin-arm64 qemu-riscv ${{ github.event.inputs.version }} test'
149+
name: 'darwin-arm64 qemu-riscv ${{github.event.inputs.version}} test'
150150
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
151151
runs-on: macos-14
152152
needs: [darwin-arm64-build]
@@ -174,20 +174,20 @@ jobs:
174174
with:
175175
fetch-depth: 3
176176

177-
- name: 'Checkout helper ${{ github.event.inputs.helper-git-ref }}'
177+
- name: 'Checkout helper ${{github.event.inputs.helper-git-ref}}'
178178
uses: actions/checkout@v4
179179
with:
180180
repository: xpack-dev-tools/xbb-helper-xpack
181181
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
182-
ref: ${{ github.event.inputs.helper-git-ref }}
182+
ref: ${{github.event.inputs.helper-git-ref}}
183183
fetch-depth: 3
184184

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

188188
- name: Upload platform tests report
189189
uses: actions/upload-artifact@v4
190190
with:
191191
name: tests-report-darwin-arm64
192-
path: ${{ github.workspace }}/build-assets/build/darwin-arm64/artefacts/tests-report-*.md
192+
path: ${{github.workspace}}/build-assets/build/darwin-arm64/artefacts/tests-report-*.md
193193
overwrite: true

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ on:
6565
jobs:
6666

6767
darwin-x64-build:
68-
name: 'darwin-x64 qemu-riscv ${{ github.event.inputs.version }} build'
68+
name: 'darwin-x64 qemu-riscv ${{github.event.inputs.version}} build'
6969
timeout-minutes: 2880 # 2 days
7070

7171
runs-on: [self-hosted, macos, intel]
@@ -101,24 +101,24 @@ jobs:
101101
- name: 'Install xpm'
102102
timeout-minutes: 1440
103103
run: |
104-
npm install --location=global xpm@${{ github.event.inputs.xpm_version }}
104+
npm install --location=global xpm@${{github.event.inputs.xpm_version}}
105105
xpm --version
106106
107107
- name: 'Install project dependencies'
108108
timeout-minutes: 1440
109-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
109+
run: xpm install --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
110110

111111
- name: 'Build darwin-x64 binaries'
112112
timeout-minutes: 1440
113113
run: |
114-
xpm install --config darwin-x64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
114+
xpm install --config darwin-x64 --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
115115
xpm run build --config darwin-x64 -C build-assets
116116
117117
- name: Upload platform artefacts
118118
uses: actions/upload-artifact@v4
119119
with:
120120
name: deploy-darwin-x64
121-
path: ${{ github.workspace }}/build-assets/build/darwin-x64/deploy/*
121+
path: ${{github.workspace}}/build-assets/build/darwin-x64/deploy/*
122122
overwrite: true
123123

124124
- name: 'Publish pre-release'
@@ -139,14 +139,14 @@ jobs:
139139
replacesArtifacts: true
140140
repo: 'pre-releases'
141141
tag: 'test'
142-
token: ${{ secrets.PUBLISH_TOKEN }}
142+
token: ${{secrets.PUBLISH_TOKEN}}
143143

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

148148
darwin-x64-test:
149-
name: 'darwin-x64 qemu-riscv ${{ github.event.inputs.version }} test'
149+
name: 'darwin-x64 qemu-riscv ${{github.event.inputs.version}} test'
150150
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
151151
runs-on: macos-12
152152
needs: [darwin-x64-build]
@@ -174,20 +174,20 @@ jobs:
174174
with:
175175
fetch-depth: 3
176176

177-
- name: 'Checkout helper ${{ github.event.inputs.helper-git-ref }}'
177+
- name: 'Checkout helper ${{github.event.inputs.helper-git-ref}}'
178178
uses: actions/checkout@v4
179179
with:
180180
repository: xpack-dev-tools/xbb-helper-xpack
181181
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
182-
ref: ${{ github.event.inputs.helper-git-ref }}
182+
ref: ${{github.event.inputs.helper-git-ref}}
183183
fetch-depth: 3
184184

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

188188
- name: Upload platform tests report
189189
uses: actions/upload-artifact@v4
190190
with:
191191
name: tests-report-darwin-x64
192-
path: ${{ github.workspace }}/build-assets/build/darwin-x64/artefacts/tests-report-*.md
192+
path: ${{github.workspace}}/build-assets/build/darwin-x64/artefacts/tests-report-*.md
193193
overwrite: true

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ on:
6565
jobs:
6666

6767
linux-arm-build:
68-
name: 'linux-arm qemu-riscv ${{ github.event.inputs.version }} build'
68+
name: 'linux-arm qemu-riscv ${{github.event.inputs.version}} build'
6969
timeout-minutes: 2880 # 2 days
7070
runs-on: [self-hosted, linux, arm, xbbla32]
7171
container:
@@ -99,21 +99,21 @@ jobs:
9999
- name: 'Install xpm'
100100
timeout-minutes: 1440
101101
run: |
102-
npm install --location=global xpm@${{ github.event.inputs.xpm_version }}
102+
npm install --location=global xpm@${{github.event.inputs.xpm_version}}
103103
xpm --version
104104
105105
- name: 'Install project dependencies'
106106
timeout-minutes: 1440
107-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
107+
run: xpm install --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
108108

109109
- name: 'Build linux-arm binaries'
110110
timeout-minutes: 1440
111111
run: |
112-
xpm install --config linux-arm --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
112+
xpm install --config linux-arm --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
113113
xpm run build --config linux-arm -C build-assets
114114
115115
linux-arm-upload:
116-
name: 'linux-arm qemu-riscv ${{ github.event.inputs.version }} upload'
116+
name: 'linux-arm qemu-riscv ${{github.event.inputs.version}} upload'
117117
timeout-minutes: 2880 # 2 days
118118
runs-on: [self-hosted, linux, arm, xbbla32]
119119
defaults:
@@ -137,7 +137,7 @@ jobs:
137137
uses: actions/upload-artifact@v4
138138
with:
139139
name: deploy-linux-arm
140-
path: ${{ github.workspace }}/build-assets/build/linux-arm/deploy/*
140+
path: ${{github.workspace}}/build-assets/build/linux-arm/deploy/*
141141
overwrite: true
142142

143143
- name: 'Publish pre-release'
@@ -158,14 +158,14 @@ jobs:
158158
replacesArtifacts: true
159159
repo: 'pre-releases'
160160
tag: 'test'
161-
token: ${{ secrets.PUBLISH_TOKEN }}
161+
token: ${{secrets.PUBLISH_TOKEN}}
162162

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

167167
linux-arm-test:
168-
name: 'linux-arm qemu-riscv@${{ github.event.inputs.version }} test'
168+
name: 'linux-arm qemu-riscv@${{github.event.inputs.version}} test'
169169
runs-on: [self-hosted, linux, arm, xbbla32]
170170
needs: [linux-arm-upload]
171171

@@ -190,23 +190,23 @@ jobs:
190190
with:
191191
fetch-depth: 3
192192

193-
- name: 'Checkout helper ${{ github.event.inputs.helper-git-ref }}'
193+
- name: 'Checkout helper ${{github.event.inputs.helper-git-ref}}'
194194
uses: actions/checkout@v4
195195
with:
196196
repository: xpack-dev-tools/xbb-helper-xpack
197197
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
198-
ref: ${{ github.event.inputs.helper-git-ref }}
198+
ref: ${{github.event.inputs.helper-git-ref}}
199199
fetch-depth: 3
200200

201-
- name: 'Run ${{ github.event.inputs.version }} docker test'
201+
- name: 'Run ${{github.event.inputs.version}} docker test'
202202
uses: docker://arm32v7/node:lts-slim # Currently based on debian:12-slim
203203
with:
204204
entrypoint: /bin/bash # /usr/bin/linux32
205-
args: /github/workspace/build-assets/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
206206

207207
- name: Upload platform tests report
208208
uses: actions/upload-artifact@v4
209209
with:
210210
name: tests-report-linux-arm
211-
path: ${{ github.workspace }}/build-assets/build/linux-arm/artefacts/tests-report-*.md
211+
path: ${{github.workspace}}/build-assets/build/linux-arm/artefacts/tests-report-*.md
212212
overwrite: true

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ on:
6565
jobs:
6666

6767
linux-arm64-build:
68-
name: 'linux-arm64 qemu-riscv ${{ github.event.inputs.version }} build'
68+
name: 'linux-arm64 qemu-riscv ${{github.event.inputs.version}} build'
6969
timeout-minutes: 2880 # 2 days
7070
runs-on: [self-hosted, linux, arm64, xbbla, xbblax]
7171
container:
@@ -99,21 +99,21 @@ jobs:
9999
- name: 'Install xpm'
100100
timeout-minutes: 1440
101101
run: |
102-
npm install --location=global xpm@${{ github.event.inputs.xpm_version }}
102+
npm install --location=global xpm@${{github.event.inputs.xpm_version}}
103103
xpm --version
104104
105105
- name: 'Install project dependencies'
106106
timeout-minutes: 1440
107-
run: xpm install --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
107+
run: xpm install --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
108108

109109
- name: 'Build linux-arm64 binaries'
110110
timeout-minutes: 1440
111111
run: |
112-
xpm install --config linux-arm64 --loglevel ${{ github.event.inputs.xpm_install_loglevel }} ${{ github.event.inputs.xpm_install_options }} -C build-assets
112+
xpm install --config linux-arm64 --loglevel ${{github.event.inputs.xpm_install_loglevel}} ${{github.event.inputs.xpm_install_options}} -C build-assets
113113
xpm run build --config linux-arm64 -C build-assets
114114
115115
linux-arm64-upload:
116-
name: 'linux-arm64 qemu-riscv ${{ github.event.inputs.version }} upload'
116+
name: 'linux-arm64 qemu-riscv ${{github.event.inputs.version}} upload'
117117
timeout-minutes: 2880 # 2 days
118118
runs-on: [self-hosted, linux, arm64, xbbla, xbblax]
119119
container:
@@ -138,7 +138,7 @@ jobs:
138138
uses: actions/upload-artifact@v4
139139
with:
140140
name: deploy-linux-arm64
141-
path: ${{ github.workspace }}/build-assets/build/linux-arm64/deploy/*
141+
path: ${{github.workspace}}/build-assets/build/linux-arm64/deploy/*
142142
overwrite: true
143143

144144
- name: 'Publish pre-release'
@@ -159,14 +159,14 @@ jobs:
159159
replacesArtifacts: true
160160
repo: 'pre-releases'
161161
tag: 'test'
162-
token: ${{ secrets.PUBLISH_TOKEN }}
162+
token: ${{secrets.PUBLISH_TOKEN}}
163163

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

168168
linux-arm64-test:
169-
name: 'linux-arm64 qemu-riscv ${{ github.event.inputs.version }} test'
169+
name: 'linux-arm64 qemu-riscv ${{github.event.inputs.version}} test'
170170
runs-on: [self-hosted, linux, arm64, xbbla, xbblax]
171171
needs: [linux-arm64-upload]
172172

@@ -191,23 +191,23 @@ jobs:
191191
with:
192192
fetch-depth: 3
193193

194-
- name: 'Checkout helper ${{ github.event.inputs.helper-git-ref }}'
194+
- name: 'Checkout helper ${{github.event.inputs.helper-git-ref}}'
195195
uses: actions/checkout@v4
196196
with:
197197
repository: xpack-dev-tools/xbb-helper-xpack
198198
path: build-assets/xpacks/@xpack-dev-tools/xbb-helper
199-
ref: ${{ github.event.inputs.helper-git-ref }}
199+
ref: ${{github.event.inputs.helper-git-ref}}
200200
fetch-depth: 3
201201

202-
- name: 'Run ${{ github.event.inputs.version }} docker test'
202+
- name: 'Run ${{github.event.inputs.version}} docker test'
203203
uses: docker://node:lts-slim # Currently based on debian:12-slim
204204
with:
205205
entrypoint: /bin/bash
206-
args: /github/workspace/build-assets/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
207207

208208
- name: Upload platform tests report
209209
uses: actions/upload-artifact@v4
210210
with:
211211
name: tests-report-linux-arm64
212-
path: ${{ github.workspace }}/build-assets/build/linux-arm64/artefacts/tests-report-*.md
212+
path: ${{github.workspace}}/build-assets/build/linux-arm64/artefacts/tests-report-*.md
213213
overwrite: true

0 commit comments

Comments
 (0)