Skip to content

Commit

Permalink
Skip the systest tests on nightly rust (#709)
Browse files Browse the repository at this point in the history
These tests are failing now because the extprim crate required by
the systest build-dependencies no longer compiles with nightly rust.
  • Loading branch information
staktrace authored May 17, 2021
1 parent 9972c24 commit 81b9cf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
shell: bash
- run: cargo test --no-default-features
- run: cargo test
- run: cargo run --manifest-path systest/Cargo.toml
# skip systest on nightly because it requires the extprim crate which fails to compile on nightly rust
- run: if [[ "${{ matrix.rust }}" != "nightly" ]]; then cargo run --manifest-path systest/Cargo.toml; fi
shell: bash
- run: cargo test --manifest-path git2-curl/Cargo.toml

rustfmt:
Expand Down

0 comments on commit 81b9cf9

Please sign in to comment.