diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..bd15f85 --- /dev/null +++ b/.circleci/config.yml @@ -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/