Skip to content

Commit 81b9cf9

Browse files
authored
Skip the systest tests on nightly rust (rust-lang#709)
These tests are failing now because the extprim crate required by the systest build-dependencies no longer compiles with nightly rust.
1 parent 9972c24 commit 81b9cf9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
shell: bash
3232
- run: cargo test --no-default-features
3333
- run: cargo test
34-
- run: cargo run --manifest-path systest/Cargo.toml
34+
# skip systest on nightly because it requires the extprim crate which fails to compile on nightly rust
35+
- run: if [[ "${{ matrix.rust }}" != "nightly" ]]; then cargo run --manifest-path systest/Cargo.toml; fi
36+
shell: bash
3537
- run: cargo test --manifest-path git2-curl/Cargo.toml
3638

3739
rustfmt:

0 commit comments

Comments
 (0)