summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-11-15 19:31:53 +0100
committerRy Dahl <ry@tinyclouds.org>2019-11-15 13:31:53 -0500
commit34ed16ed3a7dd5c33382c55df4a24313eb4038ec (patch)
treeb21db62af093a4025cb1840d54fcef6c26137e70 /.github
parent411f53f7bbff54ff8b16f4d4c0f6d2ef573926f1 (diff)
run std test with cargo test (#3344)
Removes three CI jobs
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 2 insertions, 11 deletions
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