Skip to content

Commit

Permalink
Revert "tweak"
Browse files Browse the repository at this point in the history
This reverts commit fea8c44.
  • Loading branch information
Chriscbr committed Sep 3, 2024
1 parent fea8c44 commit 1eaee3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sdk-spec-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,14 @@ jobs:
elif ${{ env.LOCAL_BUILD == 'false'}}
then
WING_CLI=$(which wing)
# COMPATIBILITY_SPY_PATH="@winglang/compatibility-spy" //TODO: will be handled in a following PR
# COMPATIBILITY="-t @winglang/compatibility-spy" //TODO: will be handled in a following PR
else
WING_CLI=$(realpath localwing/node_modules/.bin/wing)
COMPATIBILITY_SPY_PATH=$(realpath localwing/node_modules/@winglang/compatibility-spy/lib)
echo $COMPATIBILITY_SPY_PATH
COMPATIBILITY="-t ../../../localwing/node_modules/@winglang/compatibility-spy/lib"
echo $COMPATIBILITY
fi
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 -t $COMPATIBILITY_SPY_PATH *.test.w -o ../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json
$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' }}
Expand Down

0 comments on commit 1eaee3a

Please sign in to comment.