Skip to content

Commit

Permalink
ci: patch openssl.cnf for ripemd160 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pluveto committed Jul 13, 2024
1 parent 8365249 commit 15d6d9a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,26 @@ jobs:
python-version: '3.9'
- name: Install python dependencies
run: pip install hwi==2.1.1 protobuf==3.20.1 requests
- name: Patch openssl.cnf for ripemd160 support
run: |
cat << 'EOF' > /tmp/openssl.cnf
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
EOF
- name: Setup OPENSSL_CONF environment variable
run: echo "OPENSSL_CONF=/tmp/openssl.cnf" >> $GITHUB_ENV
# ==== End hwi emulator setup ====
- name: Test
run: cargo test ${{ matrix.features }}
Expand Down

0 comments on commit 15d6d9a

Please sign in to comment.