Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr committed Sep 3, 2024
1 parent 9c34d78 commit fea8c44
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="-t @winglang/compatibility-spy" //TODO: will be handled in a following PR
# COMPATIBILITY_SPY_PATH="@winglang/compatibility-spy" //TODO: will be handled in a following PR
else
WING_CLI=$(realpath localwing/node_modules/.bin/wing)
COMPATIBILITY="-t ../../../localwing/node_modules/@winglang/compatibility-spy/lib"
echo $COMPATIBILITY
COMPATIBILITY_SPY_PATH=$(realpath localwing/node_modules/@winglang/compatibility-spy/lib)
echo $COMPATIBILITY_SPY_PATH
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 $COMPATIBILITY *.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 -t $COMPATIBILITY_SPY_PATH *.test.w -o ../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json
- name: Upload Artifacts
if: ${{ env.LOCAL_BUILD == 'true' }}
Expand Down

0 comments on commit fea8c44

Please sign in to comment.