[3.12] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105867)

(cherry picked from commit 34e93d3998)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
Miss Islington (bot) 2023-06-16 12:34:46 -07:00 committed by GitHub
parent 560adb01f9
commit b34f1df5fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -239,7 +239,7 @@ jobs:
path: config.cache path: config.cache
key: ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }} key: ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
- name: Install Homebrew dependencies - 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 - name: Configure CPython
run: | run: |
GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \ GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
@ -248,7 +248,7 @@ jobs:
--config-cache \ --config-cache \
--with-pydebug \ --with-pydebug \
--prefix=/opt/python-dev \ --prefix=/opt/python-dev \
--with-openssl="$(brew --prefix openssl@1.1)" --with-openssl="$(brew --prefix openssl@3.0)"
- name: Build CPython - name: Build CPython
run: make -j4 run: make -j4
- name: Display build info - name: Display build info