Skip to content

Commit

Permalink
ci: install rustls binary deps on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-Antoine Perennou <[email protected]>
  • Loading branch information
Keruspe committed Aug 31, 2024
1 parent 9a420e6 commit c336bcd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [nightly, beta, stable, 1.74.0]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install latest ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
Expand All @@ -24,6 +24,14 @@ jobs:
profile: minimal
override: true

- name: Install NASM for aws-lc-rs on Windows
if: runner.os == 'Windows'
uses: ilammy/setup-nasm@v1

- name: Install ninja-build tool for aws-lc-fips-sys on Windows
if: runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@v5

- name: Run cargo check
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit c336bcd

Please sign in to comment.