Skip to content

Commit

Permalink
ci: fix stress test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
5d committed Jan 12, 2024
1 parent 3719cca commit e8bd256
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/stress_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
runs-on: macos-13
needs: prepare-for-test
outputs:
platform-params: ${{ steps.platform.outputs }}
destination: ${{ steps.platform.outputs.destination }}
xcode-version: ${{ steps.platform.outputs.xcode-version }}
steps:
- name: Get build parameters
id: platform
Expand All @@ -46,8 +47,8 @@ jobs:
runs-on: macos-13
environment: IntegrationTest
env:
DESTINATION: ${{ needs.get-platform-build-params.outputs.platform-params.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.platform-params.xcode-version }}
DESTINATION: ${{ needs.get-platform-build-params.outputs.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.xcode-version }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
Expand Down Expand Up @@ -77,8 +78,8 @@ jobs:
runs-on: macos-13
environment: IntegrationTest
env:
DESTINATION: ${{ needs.get-platform-build-params.outputs.platform-params.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.platform-params.xcode-version }}
DESTINATION: ${{ needs.get-platform-build-params.outputs.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.xcode-version }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
Expand Down Expand Up @@ -108,8 +109,8 @@ jobs:
runs-on: macos-13
environment: IntegrationTest
env:
DESTINATION: ${{ needs.get-platform-build-params.outputs.platform-params.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.platform-params.xcode-version }}
DESTINATION: ${{ needs.get-platform-build-params.outputs.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.xcode-version }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
Expand Down Expand Up @@ -139,8 +140,8 @@ jobs:
runs-on: macos-13
environment: IntegrationTest
env:
DESTINATION: ${{ needs.get-platform-build-params.outputs.platform-params.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.platform-params.xcode-version }}
DESTINATION: ${{ needs.get-platform-build-params.outputs.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.xcode-version }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
Expand Down Expand Up @@ -170,8 +171,8 @@ jobs:
runs-on: macos-13
environment: IntegrationTest
env:
DESTINATION: ${{ needs.get-platform-build-params.outputs.platform-params.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.platform-params.xcode-version }}
DESTINATION: ${{ needs.get-platform-build-params.outputs.destination }}
XCODE_VERSION: ${{ needs.get-platform-build-params.outputs.xcode-version }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
Expand Down

0 comments on commit e8bd256

Please sign in to comment.