steps:
- uses: actions/checkout@v3
- name: Install Homebrew dependencies
- run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk
+ run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk
- name: Configure CPython
run: |
CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
./configure \
--with-pydebug \
--prefix=/opt/python-dev \
- --with-openssl="$(brew --prefix openssl@1.1)"
+ --with-openssl="$(brew --prefix openssl@3.0)"
- name: Build CPython
run: make -j4
- name: Display build info