From 34ed16ed3a7dd5c33382c55df4a24313eb4038ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 15 Nov 2019 19:31:53 +0100 Subject: run std test with cargo test (#3344) Removes three CI jobs --- .github/workflows/ci.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fec4fe329..bbdf02d57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [macOS-latest, windows-2019, ubuntu-16.04] - kind: ['test', 'test_debug', 'test_std', 'bench', 'lint'] + kind: ['test', 'test_debug', 'bench', 'lint'] exclude: - os: windows-2019 kind: 'bench' @@ -119,18 +119,9 @@ jobs: run: cargo clippy --all-targets --release --locked -- -D clippy::all - name: Build - if: matrix.kind == 'test' || matrix.kind == 'bench' || matrix.kind == 'test_std' + if: matrix.kind == 'test' || matrix.kind == 'bench' run: cargo build --release --locked --all-targets - # TODO(ry) Remove this step, and move the following test to - # cli/tests/std_tests.rs - # TODO(ry) Remove the "cd std". - - name: std test - if: matrix.kind == 'test_std' - run: | - cd std - ../target/release/deno test -A - - name: Test if: matrix.kind == 'test' run: cargo test --release --locked --all-targets -- cgit v1.2.3