From 6189d780d8d646948b5d143a852dc901dc1cc32d Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Mon, 30 Oct 2023 15:17:54 +0000 Subject: [PATCH] Run feature tests in rustls/ directory Otherwise they get altered by feature unification from other members of the workspace. That's more "spooky action at a distance" than is desirable. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f20d81a..9ee68198 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,23 +88,29 @@ jobs: - name: cargo build (debug; default features) run: cargo build --locked + working-directory: rustls - name: cargo test (debug; default features) run: cargo test --locked + working-directory: rustls env: RUST_BACKTRACE: 1 - name: cargo test (debug; no default features) run: cargo test --locked --no-default-features + working-directory: rustls - name: cargo test (debug; no default features; tls12) run: cargo test --locked --no-default-features --features tls12 + working-directory: rustls - name: cargo test (debug; no default features; aws-lc-rs,tls12) run: cargo test --no-default-features --features aws_lc_rs,tls12 + working-directory: rustls - name: cargo test (release; no run) run: cargo test --locked --release --no-run + working-directory: rustls bogo: name: BoGo test suite