File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,16 +47,16 @@ jobs:
4747 include :
4848 - python-version : " manylinux_x86_64"
4949 archs : " x86_64"
50- enable_test : true,
50+ enable_test : true
5151 - python-version : " manylinux_i686"
5252 archs : " i686"
53- enable_test : false,
53+ enable_test : false
5454 - python-version : " manylinux_aarch64"
5555 archs : " aarch64"
56- enable_test : false,
56+ enable_test : false
5757 - python-version : " manylinux_armv7l"
5858 archs : " armv7l"
59- enable_test : false,
59+ enable_test : false
6060 steps :
6161 - uses : actions/checkout@v4
6262 - name : Download stub artifact
7878 run : python -m pip install cibuildwheel==3.1.3
7979 - name : Build wheels with tests
8080 run : python -m cibuildwheel --output-dir wheelhouse pysplashsurf
81- if : ${{ matrix.enable_test }}
81+ if : matrix.enable_test == true
8282 env :
8383 CIBW_BUILD : ${{ format('cp312-{0}', matrix.python-version) }}
8484 CIBW_ARCHS : ${{ matrix.archs }}
8989 CIBW_TEST_REQUIRES : pytest meshio trimesh rtree scipy
9090 - name : Build wheels without tests
9191 run : python -m cibuildwheel --output-dir wheelhouse pysplashsurf
92- if : ${{ ! matrix.enable_test }}
92+ if : matrix.enable_test == false
9393 env :
9494 CIBW_BUILD : ${{ format('cp312-{0}', matrix.python-version) }}
9595 CIBW_ARCHS : ${{ matrix.archs }}
You can’t perform that action at this time.
0 commit comments