87
87
with :
88
88
filter : |
89
89
Doc/**
90
- # Temporarily skip paths with spaces
91
- # (i.e. "C API", "Core and Builtins")
92
- # to avoid "Error: One of your files includes a space".
93
- # Pending https://github.com/python/core-workflow/issues/186
94
- # Misc/**
95
- Misc/NEWS.d/next/Build/**
96
- Misc/NEWS.d/next/Documentation/**
97
- Misc/NEWS.d/next/IDLE/**
98
- Misc/NEWS.d/next/Library/**
99
- Misc/NEWS.d/next/Security/**
100
- Misc/NEWS.d/next/Tests/**
101
- Misc/NEWS.d/next/Tools-Demos/**
102
- Misc/NEWS.d/next/Windows/**
103
- Misc/NEWS.d/next/macOS/**
90
+ Misc/**
104
91
.github/workflows/reusable-docs.yml
92
+ format : csv # works for paths with spaces
105
93
- name : Check for docs changes
106
94
if : >-
107
95
github.event_name == 'pull_request'
@@ -232,7 +220,7 @@ jobs:
232
220
path : config.cache
233
221
key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
234
222
- name : Install Homebrew dependencies
235
- run : brew install pkg-config openssl@1.1 xz gdbm tcl-tk
223
+ run : brew install pkg-config openssl@3.0 xz gdbm tcl-tk
236
224
- name : Configure CPython
237
225
run : |
238
226
GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
@@ -241,7 +229,7 @@ jobs:
241
229
--config-cache \
242
230
--with-pydebug \
243
231
--prefix=/opt/python-dev \
244
- --with-openssl="$(brew --prefix openssl@1.1 )"
232
+ --with-openssl="$(brew --prefix openssl@3.0 )"
245
233
- name : Build CPython
246
234
run : make -j4
247
235
- name : Display build info
0 commit comments