We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 961e255 commit e62e350Copy full SHA for e62e350
.github/workflows/wheels.yml
@@ -16,11 +16,19 @@ jobs:
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
19
- os: [ubuntu-20.04, windows-2019]
+ os: [ubuntu-20.04, windows-2019, macos-11]
20
21
steps:
22
- uses: actions/checkout@v3
23
24
+ - name: Install macos deps
25
+ if: startsWith(matrix.os, 'macos')
26
+ # automake is not included in the stock macos runner, which triggers `setup.py` to install all deps (not just
27
+ # the missing ones). However, the newly installed m4 binary fails on macos with a SIGABRT (though the original
28
+ # `brew` installed one does not) as documented in:
29
+ # https://github.com/jeffdaily/parasail-python/issues/24.
30
+ run: brew install automake
31
+
32
- name: Build wheels
33
uses: pypa/[email protected]
34
0 commit comments