Skip to content

Commit 28c8fa3

Browse files
committed
Address code review
1 parent 9a72bf0 commit 28c8fa3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,8 @@ jobs:
160160
- name: Prepare homebrew environment variables
161161
run: |
162162
brew install pkg-config openssl@1.1 xz gdbm tcl-tk
163-
echo "CFLAGS=-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" >> $GITHUB_ENV
164-
echo "LDFLAGS=-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" >> $GITHUB_ENV
165-
echo "PKG_CONFIG_PATH=$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
166163
- name: Configure CPython
167-
run: ./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1)
164+
run: CFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" LDFLAGS="-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" ./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1)
168165
- name: Build CPython
169166
run: make -j4
170167
- name: Display build info

0 commit comments

Comments
 (0)