Skip to content

Commit

Permalink
wheels2.yml: add input field for CIBW_BUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed Dec 16, 2023
1 parent e27c778 commit 7de3d18
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/wheels2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@

name: Wheels2

on: workflow_dispatch
on:
workflow_dispatch:
inputs:
cibw_build:
description: 'CIBW_BUILD'
default: 'cp*'

jobs:
build_wheels:
Expand All @@ -27,7 +32,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: 'cp*'
CIBW_BUILD: ${{ github.event.inputs.cibw_build }}
CIBW_SKIP: 'cp36-* *musllinux* *_i686 *-win32'
CIBW_ARCHS_MACOS: x86_64 arm64
#CIBW_ENVIRONMENT: CLIBD_MON=/host/${{runner.workspace}}/servalcat/monomers
Expand Down

0 comments on commit 7de3d18

Please sign in to comment.