From 81b9cf9cd03351bd1b4c0c6bd0feb30891ddb2b7 Mon Sep 17 00:00:00 2001 From: "Kartikaya Gupta (kats)" Date: Mon, 17 May 2021 18:29:29 -0400 Subject: [PATCH] Skip the systest tests on nightly rust (#709) These tests are failing now because the extprim crate required by the systest build-dependencies no longer compiles with nightly rust. --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 567a830852..528f118e8f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: