]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] gh-101981: Build macOS as recommended by the devguide (GH-102070) (#102073)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 20 Feb 2023 14:52:25 +0000 (06:52 -0800)
committerGitHub <noreply@github.com>
Mon, 20 Feb 2023 14:52:25 +0000 (15:52 +0100)
gh-101981: Build macOS as recommended by the devguide (GH-102070)

(cherry picked from commit 27136310414965a3ea7f835e416cf74b91cefb48)

.github/workflows/build.yml

index 9f039d71b3c273c5b5bc3aa8378372c898941746..0f3ad7b0bcf51b757ac250ba788a5cbb94659538 100644 (file)
@@ -177,12 +177,19 @@ jobs:
       PYTHONSTRICTEXTENSIONBUILD: 1
     steps:
     - uses: actions/checkout@v3
-    - name: Prepare homebrew environment variables
+    - name: Install Homebrew dependencies
+      run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk
+    - name: Prepare Homebrew environment variables
       run: |
-        echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
+        echo "CFLAGS=-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" >> $GITHUB_ENV
+        echo "LDFLAGS=-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" >> $GITHUB_ENV
         echo "PKG_CONFIG_PATH=$(brew --prefix openssl@1.1)/lib/pkgconfig:$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
     - name: Configure CPython
-      run: ./configure --with-pydebug --prefix=/opt/python-dev
+      run: |
+        ./configure \
+          --with-pydebug \
+          --prefix=/opt/python-dev \
+          --with-openssl="$(brew --prefix openssl@1.1)"
     - name: Build CPython
       run: make -j4
     - name: Display build info