Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/library_rust_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ jobs:
if: matrix.os == 'windows-latest'
uses: ilammy/setup-nasm@v1

# Go is needed for aws-lc-FIPS
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ">=1.18"

- name: Install Smithy-Dafny codegen dependencies
uses: ./.github/actions/install_smithy_dafny_codegen_dependencies

Expand Down Expand Up @@ -208,3 +214,11 @@ jobs:
# Without this, running test vectors fails due to `fatal runtime error: stack overflow`
export RUST_MIN_STACK=104857600
cargo test --release -- --test-threads 1 --nocapture

- name: Test ${{ matrix.library }} Rust Fips
shell: bash
working-directory: ./${{ matrix.library }}/runtimes/rust
run: |
# Without this, running test vectors fails due to `fatal runtime error: stack overflow`
export RUST_MIN_STACK=104857600
cargo test --release --features fips -- --nocapture

This file was deleted.

Loading
Loading