Skip to content

Commit

Permalink
Remove cargo-package test (denoland#3752)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ry authored and bartlomieju committed Jan 22, 2020
1 parent a8bda56 commit 3c47718
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3c47718

Please sign in to comment.