Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ workflows:
tags:
only: /.*/
build: "*musllinux*"
image: quay.io/pypa/musllinux_1_2_aarch64:2025.02.02-1
image: quay.io/pypa/musllinux_1_2_aarch64
9 changes: 3 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
name: ${{ matrix.image }} wheels
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
include:
- image: manylinux_2_28_x86_64
build: "*manylinux*"
- image: musllinux_1_2_x86_64:2025.02.02-1
- image: musllinux_1_2_x86_64
build: "*musllinux*"

steps:
Expand Down Expand Up @@ -53,13 +54,9 @@ jobs:
# Linux arm64 wheels are built on circleci
CIBW_ARCHS_LINUX: auto64 # ppc64le s390x


- id: image_name_fix
run: |
image=${{ matrix.image }}; echo "fixed_image_name=${image/:/_}" >>${GITHUB_OUTPUT}
- uses: actions/upload-artifact@v4
with:
name: artifact-${{steps.image_name_fix.outputs.fixed_image_name}}
name: artifact-${{ matrix.image }}
path: ./wheelhouse/*.whl

build_sdist:
Expand Down
2 changes: 1 addition & 1 deletion cibw-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cibuildwheel==3.1.0
cibuildwheel>=3.1
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ write_to = "cwltool/_version.py"
[tool.cibuildwheel]
test-command = "python -m pytest --ignore cwltool/schemas -n logical --dist worksteal --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml -k 'not (test_bioconda or test_env_filtering or test_udocker)' --pyargs cwltool"
test-requires = "-r test-requirements.txt"
test-extras = "deps"
build-verbosity = 1
environment = { CWLTOOL_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }
# Disable building PyPy wheels on all platforms
Expand Down
Loading