summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-10-10 05:31:23 -0400
committerGitHub <noreply@github.com>2019-10-10 05:31:23 -0400
commite7562eed8c816cd0d97aab6b818d7c8453dbaa2b (patch)
treec5a9f536e79d2c8d2d02897511a9138acaf35394 /.github/workflows
parent3882c9d19a641e0c919f1350d87c6d7ee280cf78 (diff)
parent93f7f00c956c14620ef031626f124b57397ca867 (diff)
Merge deno_std in main repo (#3091)
The history of deno_std is persevered but rewritten to update links to issues and PRs Fixes denoland/deno_std#603
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b1d873741..5896710f4 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [macOS-10.14, windows-2016, ubuntu-16.04]
- kind: ['test', 'bench', 'lint']
+ kind: ['test', 'test_std', 'bench', 'lint']
exclude:
- os: windows-2016
kind: 'bench'
@@ -102,6 +102,15 @@ jobs:
if: matrix.kind != 'lint'
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