fix github action

This commit is contained in:
David Braun 2025-01-08 15:08:11 -05:00
parent 5af8eed1e3
commit f2882883ad

View file

@ -50,6 +50,7 @@ jobs:
CIBW_TEST_COMMAND: "rm -rf vita/*.so* && cd {project}/tests && python -m pytest -v ." CIBW_TEST_COMMAND: "rm -rf vita/*.so* && cd {project}/tests && python -m pytest -v ."
CIBW_ARCHS: auto64 CIBW_ARCHS: auto64
CIBW_ARCHS_LINUX: auto64 aarch64 # On an Linux Intel runner with qemu installed, build Intel and ARM wheels CIBW_ARCHS_LINUX: auto64 aarch64 # On an Linux Intel runner with qemu installed, build Intel and ARM wheels
CIBW_TEST_SKIP: "*313*"
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
@ -95,6 +96,7 @@ jobs:
CIBW_ARCHS: auto64 CIBW_ARCHS: auto64
CIBW_ARCHS_MACOS: ${{matrix.ARCHS}} CIBW_ARCHS_MACOS: ${{matrix.ARCHS}}
CIBW_ENVIRONMENT_MACOS: ARCHS="${{matrix.ARCHS}}" CIBW_ENVIRONMENT_MACOS: ARCHS="${{matrix.ARCHS}}"
CIBW_TEST_SKIP: "*313*"
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
@ -123,6 +125,9 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install cibuildwheel
run: python -m pip install typing_extensions
- name: Add msbuild to PATH - name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2 uses: microsoft/setup-msbuild@v2
@ -153,6 +158,7 @@ jobs:
CIBW_TEST_COMMAND: "cd /D {project}\\tests && python -m pytest -v ." CIBW_TEST_COMMAND: "cd /D {project}\\tests && python -m pytest -v ."
CIBW_ARCHS: auto64 CIBW_ARCHS: auto64
CIBW_BUILD: ${{matrix.CIBW-BUILD}} CIBW_BUILD: ${{matrix.CIBW-BUILD}}
CIBW_TEST_SKIP: "*313*"
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with: