diff options
author | Erlend E. Aasland <erlend@python.org> | 2023-07-05 11:20:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 11:20:44 (GMT) |
commit | 38b489bae817eef648fa14e775296c6245da2cb2 (patch) | |
tree | 23e77b87913de84950c4af6f6ef17d73e77bd50e | |
parent | ce93371488b0fcd942567c2ee43f7d2e13e597fb (diff) | |
download | cpython-38b489bae817eef648fa14e775296c6245da2cb2.zip cpython-38b489bae817eef648fa14e775296c6245da2cb2.tar.gz cpython-38b489bae817eef648fa14e775296c6245da2cb2.tar.bz2 |
[3.9] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105871)
(cherry picked from commit 34e93d3998bab8acd651c50724eb1977f4860a08)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab2d0e4..37fd2ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -153,15 +153,16 @@ jobs: PYTHONSTRICTEXTENSIONBUILD: 1 steps: - uses: actions/checkout@v3 + - name: Install Homebrew dependencies + run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk - name: Configure CPython run: | - brew install pkg-config openssl@1.1 xz gdbm tcl-tk CC=clang \ CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \ LDFLAGS="-L$(brew --prefix gdbm)/lib -L$(brew --prefix xz)/lib" \ ./configure --prefix=/opt/python-dev \ --with-pydebug \ - --with-openssl="$(brew --prefix openssl@1.1)" \ + --with-openssl="$(brew --prefix openssl@3.0)" \ --with-tcltk-libs="$(pkg-config --libs tk)" \ --with-tcltk-includes="$(pkg-config --cflags tk)" - name: Build CPython |