Skip to content

Commit

Permalink
github/ci: Fix verify artefacts (envoyproxy#36406)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Oct 1, 2024
1 parent ffbb973 commit cfbc830
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/_publish_verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,11 @@ jobs:
export NO_BUILD_SETUP=1
export ENVOY_DOCKER_IN_DOCKER=1
target: ${{ matrix.target }}
target-suffix: ${{ matrix.arch }}
trusted: ${{ inputs.trusted }}
steps-pre: |
- run: |
echo ARCH=${{ matrix.arch || 'x64' }} >> $GITHUB_ENV
echo ARCH=${{ matrix.arch }} >> $GITHUB_ENV
echo DEB_ARCH=${{ matrix.arch == 'arm64' && 'arm64' || 'amd64' }} >> $GITHUB_ENV
shell: bash
- run: |
Expand All @@ -124,6 +125,7 @@ jobs:

- name: verify_distro_x64
target: verify_distro
arch: x64
rbe: true

- name: verify_distro_arm64
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,11 @@ jobs:
fail-match: ${{ inputs.fail-match }}
notice-match: ${{ inputs.notice-match }}
output-path: ${{ inputs.output-path }}
report-name: ci-report-${{ inputs.target-suffix && format('{0}-', inputs.target-suffix) || '' }}${{ inputs.target-name || inputs.target }}.json
report-name: >-
ci-report-${{
inputs.target-suffix
&& format('{0}-', inputs.target-suffix)
|| '' }}${{ inputs.target-name || inputs.target }}.json
report-pre: ${{ inputs.report-pre }}
report-post: ${{ inputs.report-post }}
source: ${{ inputs.source }}
Expand Down

0 comments on commit cfbc830

Please sign in to comment.