diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-16 19:34:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 19:34:46 (GMT) |
commit | b34f1df5fa2a8745d6d54e93e5b54624abd65c30 (patch) | |
tree | 6ab019866fd1dd949e322f8dbef23089c98a5cd8 | |
parent | 560adb01f97015a6778568e057aa3eeaace3b5f4 (diff) | |
download | cpython-b34f1df5fa2a8745d6d54e93e5b54624abd65c30.zip cpython-b34f1df5fa2a8745d6d54e93e5b54624abd65c30.tar.gz cpython-b34f1df5fa2a8745d6d54e93e5b54624abd65c30.tar.bz2 |
[3.12] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105867)
(cherry picked from commit 34e93d3998bab8acd651c50724eb1977f4860a08)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1d4047..197953b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -239,7 +239,7 @@ jobs: path: config.cache key: ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }} - name: Install Homebrew dependencies - run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk + run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk - name: Configure CPython run: | GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \ @@ -248,7 +248,7 @@ jobs: --config-cache \ --with-pydebug \ --prefix=/opt/python-dev \ - --with-openssl="$(brew --prefix openssl@1.1)" + --with-openssl="$(brew --prefix openssl@3.0)" - name: Build CPython run: make -j4 - name: Display build info |