Skip to content

Commit

Permalink
Bump rustls version to 0.23
Browse files Browse the repository at this point in the history
We were running into symbol issues with older rustls versions, see briansmith/ring#1808.

Note that the new rustls version requires nasm to be installed on windows, so we install it in CI.

Signed-off-by: Bob Weinand <[email protected]>
  • Loading branch information
bwoebi committed May 30, 2024
1 parent 5128ad6 commit 182f14c
Show file tree
Hide file tree
Showing 9 changed files with 8,190 additions and 5,382 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
rust_version: "${RUST_VERSION}"
fail-fast: false
steps:
- name: "(Windows) Install nasm"
if: matrix.platform == 'windows-latest'
uses: ilammy/setup-nasm@v1

- name: Checkout sources
uses: actions/checkout@v4

Expand Down Expand Up @@ -79,6 +83,9 @@ jobs:
- platform: "ubuntu-latest"
rust_version: "${RUST_VERSION}"
steps:
- name: "(Windows) Install nasm"
if: matrix.platform == 'windows-latest'
uses: ilammy/setup-nasm@v1

- name: Checkout sources
uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit 182f14c

Please sign in to comment.