diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-01-22 13:43:14 -0500 |
---|---|---|
committer | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-22 19:43:14 +0100 |
commit | 3c47718959fb38d51e34c64d423151b5326bae3a (patch) | |
tree | 33b4258a653e9b076ea1e348a764f32619ab3478 | |
parent | a8bda560e238181d6c5b01affe328bee4503b9e8 (diff) |
Remove cargo-package test (#3752)
The test still relies on crates published to crates.io, thus this test
prevents us from making changes to the API used between cli and
deno_typescript.
-rw-r--r-- | .github/workflows/ci.yml | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 469837c5d..22b21fdcc 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', 'bench', 'lint', 'package'] + kind: ['test', 'test_debug', 'bench', 'lint'] exclude: - os: windows-2019 kind: 'bench' @@ -26,11 +26,6 @@ jobs: kind: 'test_debug' - os: macOS-latest kind: 'test_debug' - - - os: windows-2019 - kind: 'package' - - os: macOS-latest - kind: 'package' steps: - name: Configure git run: git config --global core.symlinks true @@ -132,16 +127,6 @@ jobs: if: matrix.kind == 'test' || matrix.kind == 'bench' run: cargo build --release --locked --all-targets - - name: test cargo-package - if: matrix.kind == 'package' - run: | - cd core - cargo package - cd ../deno_typescript - cargo package - cd ../cli - cargo package - - name: Test if: matrix.kind == 'test' run: cargo test --release --locked --all-targets |