Skip to content

Commit

Permalink
chore: fix matrix-update.yml pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr committed Aug 20, 2024
1 parent a0be4f7 commit 37d0512
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/matrix-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
- name: Install pnpm Dependencies
run: pnpm install --frozen-lockfile --filter ./tools/compatibility-matrix-automation

- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: out
pattern: out-*

- name: Download Output Files
uses: actions/download-artifact@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/sdk-spec-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ jobs:
cd ${{ matrix.test.directory }}
$WING_CLI test --snapshots=deploy -t ${{ matrix.target }} -p ${{ (matrix.target == 'tf-azure' && 2 ) || (matrix.target == 'tf-gcp' && 5) || 10 }} --retry 3 $COMPATIBILITY *.test.w -o ../../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json
# - name: Upload Artifacts
# if: ${{ env.LOCAL_BUILD == 'true' }}
# uses: actions/upload-artifact@v4
# with:
# name: out
# path: out/*
- name: Upload Artifacts
if: ${{ env.LOCAL_BUILD == 'true' }}
uses: actions/upload-artifact@v4
with:
name: out-${{ matrix.test }}-${{ matrix.target }}
path: out/*

- name: Output Terraform log
if: failure()
Expand Down

0 comments on commit 37d0512

Please sign in to comment.