Skip to content

Commit 66a986a

Browse files
simplify test job name formatting and remove redundant qemu setup
1 parent ea15cae commit 66a986a

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

.github/workflows/newbuild.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -265,15 +265,7 @@ jobs:
265265
options: [""]
266266
include: ${{ fromJSON(needs.setup.outputs.additional-tests) }}
267267
fail-fast: false
268-
name: >
269-
test
270-
${{ matrix.tag }}
271-
${{ matrix.arch }}
272-
${{ matrix.network }}
273-
${{ matrix.core && 'core' }}
274-
${{ matrix.rpc && 'rpc' }}
275-
${{ matrix.horizon && 'horizon' }}
276-
${{ matrix.options }}
268+
name: test ${{ matrix.tag }} ${{ matrix.arch }} ${{ matrix.network }} ${{ matrix.core && 'core' || '' }} ${{ matrix.rpc && 'rpc' || '' }} ${{ matrix.horizon && 'horizon' || '' }} ${{ matrix.options || '' }}
277269
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
278270
steps:
279271
- name: Free up disk space
@@ -294,10 +286,6 @@ jobs:
294286
path: /tmp/
295287
- name: Load Quickstart Image
296288
run: docker load -i /tmp/image
297-
- if: inputs.arch == 'arm64'
298-
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18
299-
with:
300-
platforms: arm64
301289
- name: Create Tag
302290
id: tag
303291
run: echo "tag=${{ needs.setup.outputs.tag-prefix }}${{ matrix.tag }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)