summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-07-05 11:20:29 (GMT)
committerGitHub <noreply@github.com>2023-07-05 11:20:29 (GMT)
commit073c66070778c8bc2a35085ae303be47d583c7af (patch)
tree4feffaf0a6f40ea2ad39b35c671607217219d0e7
parent18514431570e9928094df0b0a74a1808fbd054dd (diff)
downloadcpython-073c66070778c8bc2a35085ae303be47d583c7af.zip
cpython-073c66070778c8bc2a35085ae303be47d583c7af.tar.gz
cpython-073c66070778c8bc2a35085ae303be47d583c7af.tar.bz2
[3.10] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105869)
(cherry picked from commit 34e93d3998bab8acd651c50724eb1977f4860a08) Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f51a93e..8e91a17 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -181,7 +181,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- 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: |
CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
@@ -189,7 +189,7 @@ jobs:
./configure \
--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