From b45a5a47dbfe2505534a7e7555a215b0fa965deb Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Mon, 20 Feb 2023 22:33:52 +0900 Subject: [PATCH] Address code review --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94257c62c04261..13fa78379b9498 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