From b61ec57c88950e8928593025a774c57177376255 Mon Sep 17 00:00:00 2001 From: BiagioFesta <15035284+BiagioFesta@users.noreply.github.com> Date: Tue, 5 Mar 2024 18:44:45 +0100 Subject: [PATCH] ci: run test with FIPS aws_lc_rs module --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5960c02..f0d17248 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,6 +138,8 @@ jobs: run: cargo test --verbose --features x509-parser --all-targets - name: Run the tests with aws_lc_rs backend enabled run: cargo test --verbose --no-default-features --features aws_lc_rs,pem --all-targets + - name: Run the tests with FIPS aws_lc_rs module + run: cargo test --verbose --no-default-features --features fips,pem --all-targets - name: Run the tests with no features enabled run: cargo test --verbose --no-default-features --all-targets @@ -179,6 +181,8 @@ jobs: run: cargo test --verbose --features x509-parser --all-targets - name: Run the tests with aws_lc_rs backend enabled run: cargo test --verbose --no-default-features --features aws_lc_rs,pem --all-targets + - name: Run the tests with FIPS aws_lc_rs module + run: cargo test --verbose --no-default-features --features fips,pem --all-targets # Build rustls-cert-gen as a standalone package, see this PR for why it's needed: # https://github.com/rustls/rcgen/pull/206#pullrequestreview-1816197358