mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Fix the BoringSSL build (#9362)
This commit is contained in:
parent
80008ce29e
commit
48eba4e628
2 changed files with 5 additions and 3 deletions
1
.github/workflows/build_openssl.sh
vendored
1
.github/workflows/build_openssl.sh
vendored
|
|
@ -78,4 +78,5 @@ elif [[ "${TYPE}" == "boringssl" ]]; then
|
|||
# delete binaries we don't need
|
||||
rm -rf "${OSSL_PATH}/bin"
|
||||
popd
|
||||
rm -rf boringssl/
|
||||
fi
|
||||
|
|
|
|||
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -97,9 +97,10 @@ jobs:
|
|||
timeout-minutes: 2
|
||||
with:
|
||||
path: ${{ github.workspace }}/osslcache
|
||||
# When altering the openssl build process you may need to increment the value on the end of this cache key
|
||||
# so that you can prevent it from fetching the cache and skipping the build step.
|
||||
key: ${{ matrix.PYTHON.OPENSSL.TYPE }}-${{ matrix.PYTHON.OPENSSL.VERSION }}-${{ env.OPENSSL_HASH }}-8
|
||||
# When altering the openssl build process you may need to increment
|
||||
# the value on the end of this cache key so that you can prevent it
|
||||
# from fetching the cache and skipping the build step.
|
||||
key: ${{ matrix.PYTHON.OPENSSL.TYPE }}-${{ matrix.PYTHON.OPENSSL.VERSION }}-${{ env.OPENSSL_HASH }}-9
|
||||
if: matrix.PYTHON.OPENSSL
|
||||
- name: Build custom OpenSSL/LibreSSL
|
||||
run: .github/workflows/build_openssl.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue