diff --git a/.github/workflows/ci-push.yml b/.github/workflows/ci-push.yml index 778941d9e0..88097b1827 100644 --- a/.github/workflows/ci-push.yml +++ b/.github/workflows/ci-push.yml @@ -190,36 +190,3 @@ jobs: name: racketcs-${{ matrix.os }}-x64_git${{ github.sha }} path: ../racketcs-${{ matrix.os }}-x64_git${{ github.sha }}.tar.bz2 -# Tests - test-cgc: - strategy: - fail-fast: false - matrix: - os: [ubuntu-18.04, macos-latest] - cify: [cify, nocify] - - runs-on: ${{ matrix.os }} - - needs: build-racketcgc - - steps: - - uses: actions/checkout@v1 - - uses: actions/download-artifact@master - with: - name: racketcgc-${{ matrix.os }}-${{ matrix.cify }}-x64_git${{ github.sha }} - path: ../ - - name: Untar - working-directory: ../ - run: tar -xvjf racketcgc-${{ matrix.os }}-${{ matrix.cify }}-x64_git${{ github.sha }}.tar.bz2 - - name: Extend PATH with Racket executable - working-directory: ../ - run: echo "::set-env name=PATH::$PWD/racketcgc/bin:$PATH" - - name: Check for Racket - run: racket --version - - name: Install catalog and required packages - run: | - racket -l- pkg/dirs-catalog --immediate $PWD/rktcat $PWD/pkgs/ - raco pkg config --set catalogs $PWD/rktcat/ https://pkgs.racket-lang.org https://planet-compats.racket-lang.org - raco pkg install --auto racket-test - - name: Run test - run: raco test -l tests/racket/test