From 196f72d756dea715259cae29ab6be6f0b717abde Mon Sep 17 00:00:00 2001 From: shhyou Date: Tue, 15 Dec 2020 13:59:11 -0600 Subject: [PATCH] Add syntax tests for other configurations. racket#3078 adds syntax tests for (x86_linux-)test-cgc; this commit adds syntax tests for other configurations. --- .github/workflows/ci-push-arm_linux.yml | 4 ++++ .github/workflows/ci-push-x86_linux.yml | 4 ++++ .github/workflows/ci-push_macos.yml | 6 ++++++ .github/workflows/ci_win.yml | 1 + 4 files changed, 15 insertions(+) diff --git a/.github/workflows/ci-push-arm_linux.yml b/.github/workflows/ci-push-arm_linux.yml index 7702d5b406..828aa294af 100644 --- a/.github/workflows/ci-push-arm_linux.yml +++ b/.github/workflows/ci-push-arm_linux.yml @@ -273,6 +273,8 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax test-cs: container: @@ -343,3 +345,5 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax diff --git a/.github/workflows/ci-push-x86_linux.yml b/.github/workflows/ci-push-x86_linux.yml index 7e015e063b..4eb8bf3684 100644 --- a/.github/workflows/ci-push-x86_linux.yml +++ b/.github/workflows/ci-push-x86_linux.yml @@ -345,6 +345,8 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax test-cs: runs-on: ubuntu-18.04 @@ -409,6 +411,8 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax slack: runs-on: ubuntu-latest needs: [test-cgc, test-3m, test-cs] diff --git a/.github/workflows/ci-push_macos.yml b/.github/workflows/ci-push_macos.yml index 2095731907..d15b210aae 100644 --- a/.github/workflows/ci-push_macos.yml +++ b/.github/workflows/ci-push_macos.yml @@ -239,6 +239,8 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax test-3m: strategy: @@ -304,6 +306,8 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax test-cs: runs-on: macos-latest @@ -364,3 +368,5 @@ jobs: run: raco pkg install --auto db-test - name: Run db tests run: raco test -l tests/db/all-tests + - name: Run syntax tests + run: raco test -c tests/syntax diff --git a/.github/workflows/ci_win.yml b/.github/workflows/ci_win.yml index b8ba0ca846..c489eb3584 100644 --- a/.github/workflows/ci_win.yml +++ b/.github/workflows/ci_win.yml @@ -65,3 +65,4 @@ jobs: call racket\raco.exe test -c tests/future call racket\raco.exe test -l tests/db/all-tests racket\raco.exe test -c tests/stxparse + call racket\raco.exe test -c tests/syntax