1 parent ef816e2 commit f33d5e3Copy full SHA for f33d5e3
1 file changed
.github/workflows/cibuildwheel.yml
@@ -16,6 +16,7 @@ jobs:
16
name: Build wheels on ${{ matrix.os }}
17
runs-on: ${{ matrix.os }}
18
strategy:
19
+ fail-fast: false
20
matrix:
21
os: [ubuntu-20.04, windows-2019, macos-10.15]
22
@@ -25,9 +26,10 @@ jobs:
25
26
- name: Build wheels
27
uses: pypa/cibuildwheel@v2.1.3
28
env:
- CIBW_BEFORE_BUILD_LINUX: yum install libunwind-devel elfutils-libelf-devel libdwarf-devel
29
+ CIBW_BEFORE_BUILD_LINUX: yum install -y libunwind-devel elfutils-libelf-devel libdwarf-devel
30
CIBW_BEFORE_TEST: pip install -r test_requirements.txt
- CIBW_TEST_COMMAND: pytest {package}/vmprof && pytest {package}/jitlog
31
+ CIBW_TEST_COMMAND: cd {package} && pytest vmprof && pytest jitlog
32
+ CIBW_TEST_COMMAND_WINDOWS: cd /d {package} && pytest vmprof && pytest jitlog
33
34
#- uses: actions/upload-artifact@v2
35
# with:
0 commit comments