Skip to content

Commit

Permalink
ci: update ubuntu to 22.04, fix openssl ripemd160 config
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Jun 3, 2024
1 parent def31bb commit 0cbd532
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

env:
CARGO_TERM_COLOR: always
OPENSSL_CONF: ci/openssl.cnf

jobs:
fmt:
Expand Down Expand Up @@ -36,7 +37,7 @@ jobs:
- name: Clippy
run: cargo clippy --all-features -- -D warnings
test-emulators:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
rust:
Expand Down Expand Up @@ -89,7 +90,7 @@ jobs:
- name: Wipe
run: cargo test test_wipe_device -- --ignored
test-readme-examples:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down
14 changes: 14 additions & 0 deletions ci/openssl.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
openssl_conf = openssl_init

[openssl_init]
providers = provider_sect

[provider_sect]
default = default_sect
legacy = legacy_sect

[default_sect]
activate = 1

[legacy_sect]
activate = 1

0 comments on commit 0cbd532

Please sign in to comment.