We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0bf781 commit e1a22f4Copy full SHA for e1a22f4
.github/workflows/ci.yml
@@ -24,6 +24,20 @@ jobs:
24
with:
25
toolchain: ${{ env.latest_version }}
26
- uses: Swatinem/rust-cache@v2
27
+ - name: Install NASM for aws-lc-rs on Windows
28
+ if: runner.os == 'Windows'
29
+ uses: ilammy/setup-nasm@v1
30
+
31
+ - name: Install ninja-build tool for aws-lc-fips-sys on Windows
32
33
+ uses: seanmiddleditch/gha-setup-ninja@v5
34
35
+ - name: Install golang for aws-lc-fips-sys on macos
36
+ if: runner.os == 'MacOS'
37
+ uses: actions/setup-go@v5
38
+ with:
39
+ go-version: "1.22.2"
40
41
- run: cargo test --all-features --workspace --lib --tests --profile "ci"
42
43
docs:
0 commit comments