File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- # os: [ubuntu-latest, macos-13, macos-latest]
12
- os : [ubuntu-latest]
11
+ os : [ubuntu-latest, macos-13, macos-latest]
13
12
14
13
steps :
15
14
- uses : actions/checkout@v4
@@ -24,15 +23,14 @@ jobs:
24
23
25
24
- name : Build wheels
26
25
run : python -m cibuildwheel --output-dir wheelhouse
27
- # to supply options, put them in 'env', like:
28
26
env :
29
- # CIBW_BEFORE_BUILD_LINUX: ${{ matrix.linux_type == 'musllinux' && 'apk add --no-cache openssl-dev' || 'yum install -y openssl openssl-devel' }}
30
27
CIBW_BEFORE_BUILD_LINUX : |
31
28
if [ -f "/etc/alpine-release" ]; then
32
29
apk add --no-cache openssl-dev
33
30
else
34
31
yum install -y openssl openssl-devel
35
32
fi
33
+ CIBW_BEFORE_BUILD_MACOS : " brew install openssl"
36
34
- uses : actions/upload-artifact@v4
37
35
with :
38
36
name : cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
You can’t perform that action at this time.
0 commit comments