From: Erlend E. Aasland Date: Wed, 5 Jul 2023 11:20:58 +0000 (+0200) Subject: [3.8] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105872) X-Git-Tag: v3.8.18~6 X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=1663f8ba8405fefc82f74f8d1ed86d6f26250658;p=thirdparty%2FPython%2Fcpython.git [3.8] CI: Bump macOS build to use OpenSSL v3.0 (GH-105538) (#105872) (cherry picked from commit 34e93d3998bab8acd651c50724eb1977f4860a08) Co-authored-by: Erlend E. Aasland --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8102541bc335..b7bc77181515 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -132,16 +132,17 @@ jobs: HOMEBREW_NO_INSTALL_CLEANUP: 1 steps: - uses: actions/checkout@v2 + - 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 SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk \ 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