diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2023-06-16 19:00:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 19:00:37 (GMT) |
commit | 34e93d3998bab8acd651c50724eb1977f4860a08 (patch) | |
tree | 3b99a021922636dfeadece9f65e78651381c5843 | |
parent | 2beab5bdef5fa2a00a59371e6137f769586b7404 (diff) | |
download | cpython-34e93d3998bab8acd651c50724eb1977f4860a08.zip cpython-34e93d3998bab8acd651c50724eb1977f4860a08.tar.gz cpython-34e93d3998bab8acd651c50724eb1977f4860a08.tar.bz2 |
CI: Bump macOS build to use OpenSSL v3.0 (#105538)
-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 77c2088..4760c07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -232,7 +232,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" \ @@ -241,7 +241,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 |