summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml17
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