Skip to content

Commit

Permalink
Add .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wulan17 committed Jun 6, 2024
1 parent 141532b commit 0d07d04
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: 2.1

jobs:
arm-wheels:
parameters:
build:
type: string
skip:
type: string
default: ""

machine:
image: ubuntu-2204:latest
resource_class: arm.medium

steps:
- checkout
- run:
name: install cibuildwheel
command: |
python3 -m pip install --upgrade pip setuptools twine
- run:
name: cibuildwheel
command: |
python3 -m cibuildwheel .
- run:
name: upload
command: |
python3 -m twine wheelhouse/*.whl
- store_artifacts:
path: wheelhouse/

0 comments on commit 0d07d04

Please sign in to comment.