diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94257c62c042618..13fa78379b94981 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -159,17 +159,12 @@ jobs: - uses: actions/checkout@v3 - name: Install Homebrew dependencies run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk - - name: Prepare Homebrew environment variables + - name: Configure CPython with preparing Homebrew environment variable 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) - - name: Configure CPython - run: | - ./configure \ - --with-pydebug \ - --with-openssl="$(brew --prefix openssl@1.1)" - name: Build CPython run: make -j4 - name: Display build info