Skip to content

Commit

Permalink
github/ci: Fix macOS artefact name (#36402)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax authored Oct 1, 2024
1 parent af866f3 commit ffbb973
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ on:
target:
type: string
required: true
target-name:
type: string
target-suffix:
type: string
temp-dir:
Expand Down Expand Up @@ -296,7 +298,7 @@ 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 }}.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
2 changes: 2 additions & 0 deletions .github/workflows/envoy-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
steps-post:
steps-pre: ${{ matrix.steps-pre }}
target: ${{ matrix.target }}
target-name: ${{ matrix.target-name }}
timeout-minutes: 90
trusted: ${{ fromJSON(needs.load.outputs.trusted) }}
strategy:
Expand All @@ -60,6 +61,7 @@ jobs:
include:
- target: ci/mac_ci_steps.sh
name: macOS
target-name: mac_ci_steps
source: |
source ./ci/mac_ci_setup.sh
_BAZEL_BUILD_EXTRA_OPTIONS=(
Expand Down

0 comments on commit ffbb973

Please sign in to comment.