From 24e53d92c5808bb47b316de632f51db69173d1c5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 3 Nov 2019 04:42:31 +0100 Subject: Remove Wasm target from CI for now --- .github/workflows/integration.yml | 4 ---- 1 file changed, 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 54ca2e33..5e73f3cb 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -7,10 +7,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] rust: [stable, beta] - include: - - os: ubuntu-latest - rust: stable - targets: 'wasm32-unknown-unknown' steps: - uses: hecrj/setup-rust-action@v1 with: -- cgit From 494b0681f831c76b28e0bcd02cd1b83378416e01 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 3 Nov 2019 05:06:53 +0100 Subject: Enable debug view explicitly and test it in CI --- .github/workflows/integration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5e73f3cb..16d60ea7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,4 +19,6 @@ jobs: sudo apt-get install -y libasound2-dev libudev-dev - uses: actions/checkout@master - name: Run tests - run: cargo test --verbose --all --all-features + run: | + cargo test --verbose --all + cargo test --verbose --all --all-features -- cgit