Skip to content

Commit

Permalink
Skip test for macos-14-xlarge w/ FIPS
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Nov 21, 2024
1 parent 5f0a5f9 commit 087dec7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,10 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '>=1.18'
- name: Run cargo test
# FIPS builds for ARM platforms (e.g, macos-14-xlarge) will fail until upstream change is made:
# https://github.com/aws/aws-lc/pull/2005
- if: matrix.os != 'macos-14-xlarge' || matrix.fips != 1
name: Run cargo test
working-directory: "path has spaces/aws-lc-rs"
run: cargo test --tests -p aws-lc-rs --no-default-features --features ${{ (matrix.fips == 1 && 'fips') || 'aws-lc-sys' }}

Expand Down

0 comments on commit 087dec7

Please sign in to comment.