From 3c47718959fb38d51e34c64d423151b5326bae3a Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 22 Jan 2020 13:43:14 -0500 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 469837c5d7..22b21fdccf 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