diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 43b34d4f457..d790a14a723 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -44,9 +44,9 @@ jobs: wing test main.w cd .. done - - name: Download examples/tests/valid/hello.test.w + - name: Download tests/valid/hello.test.w run: | - curl -L https://raw.githubusercontent.com/winglang/wing/main/examples/tests/valid/hello.test.w > hello.test.w + curl -L https://raw.githubusercontent.com/winglang/wing/main/tests/valid/hello.test.w > hello.test.w cat hello.test.w - name: Run Compile run: | diff --git a/.github/workflows/sdk-spec-test.yml b/.github/workflows/sdk-spec-test.yml index 474e642ba5b..c75a99f7bd2 100644 --- a/.github/workflows/sdk-spec-test.yml +++ b/.github/workflows/sdk-spec-test.yml @@ -76,7 +76,7 @@ jobs: id: setdirs shell: bash run: | # TODO: skipping std, math and external folders, when https://github.com/winglang/wing/issues/3168 is resolve- we'll skip only the external folder. - dirs=$(ls -d examples/tests/sdk_tests/*/ | sed 's/\/$//' | grep -v "external\|std\|math" | jq -R -s -c 'split("\n")[:-1]') + dirs=$(ls -d tests/sdk_tests/*/ | sed 's/\/$//' | grep -v "external\|std\|math" | jq -R -s -c 'split("\n")[:-1]') processed_dirs=$(echo "{ \"directory\": $dirs }" | jq -c '[ .directory[] | {directory: ., name: (split("/") | last)}]') wrapped_dirs=$(echo $processed_dirs | jq -c .) echo "dirs=$wrapped_dirs" >> $GITHUB_OUTPUT @@ -154,7 +154,7 @@ jobs: ######################################################################## - name: Installing external js modules run: | - cd examples/tests/sdk_tests + cd tests/sdk_tests npm install - name: Configure AWS credentials if: ${{ matrix.target == 'tf-aws' }}