From 1eaee3a4901874b56c1ce94e458fc55ca505c8ea Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Tue, 3 Sep 2024 16:47:23 -0400 Subject: [PATCH] Revert "tweak" This reverts commit fea8c440bdc758503ccffd5721768b3afc943c30. --- .github/workflows/sdk-spec-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sdk-spec-test.yml b/.github/workflows/sdk-spec-test.yml index 6dd867b98cb..95a20f1e4b5 100644 --- a/.github/workflows/sdk-spec-test.yml +++ b/.github/workflows/sdk-spec-test.yml @@ -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' }}