Skip to content

Commit

Permalink
drop! Try to trigger the errors seen after the upcoming OpenSSL change
Browse files Browse the repository at this point in the history
THIS COMMIT SHOULD NOT BE MERGED, IT IS ONLY MEANT FOR TESTING
  • Loading branch information
romen committed Nov 22, 2022
1 parent 3d9e574 commit 689b687
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_openssl.sh
Expand Up @@ -15,6 +15,11 @@ if [[ "${TYPE}" == "openssl" ]]; then
git clone https://github.com/openssl/openssl
pushd openssl
git checkout "${VERSION}"
elif [[ "${VERSION}" =~ ^romen-[0-9a-f]{40}$ ]]; then
export VERSION="${VERSION#"romen-"}"
git clone https://github.com/romen/openssl
pushd openssl
git checkout "${VERSION}"
else
curl -O "https://www.openssl.org/source/openssl-${VERSION}.tar.gz"
tar zxf "openssl-${VERSION}.tar.gz"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -42,6 +42,8 @@ jobs:
- {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "boringssl", VERSION: "5511fa833c96c8caa9b51c13367f057c74d850eb"}}
# Latest commit on the OpenSSL master branch, as of Nov 22, 2022.
- {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "openssl", VERSION: "26cfa4cd85f6b26dd7a48c2ff06bfa4a2cea4764"}}
# Upcoming change in OpenSSL that triggers some errors. DO NOT MERGE
- {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "openssl", VERSION: "romen-fc0288cbe250c741deb552fa21522125990a313a"}}
name: "${{ matrix.PYTHON.TOXENV }} ${{ matrix.PYTHON.OPENSSL.TYPE }} ${{ matrix.PYTHON.OPENSSL.VERSION }} ${{ matrix.PYTHON.TOXARGS }} ${{ matrix.PYTHON.OPENSSL.CONFIG_FLAGS }}"
timeout-minutes: 15
steps:
Expand Down

0 comments on commit 689b687

Please sign in to comment.