Skip to content

Commit

Permalink
limit the number of builds
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed Dec 19, 2023
1 parent 034a2b1 commit 494e31a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ on:
inputs:
cibw_build:
description: 'CIBW_BUILD'
default: '*'
cibw_skip:
description: 'CIBW_SKIP'
default: ''
default: 'cp312-*'

jobs:
build_wheels:
Expand All @@ -33,7 +30,6 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ github.event.inputs.cibw_build }}
CIBW_SKIP: ${{ github.event.inputs.cibw_skip }}
CIBW_ARCHS: "${{ matrix.arch }}"

- run: ls -lh wheelhouse
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ BUILD_SHARED_LIBS = "OFF"
[tool.cibuildwheel]
build-verbosity = 1
test-command = "gemmi --version --verbose"
skip = "*musllinux*"
# this setting is in .github/workflows/wheels.yml, here it's for local testing
build = "cp312-*"

0 comments on commit 494e31a

Please sign in to comment.