File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 16
16
- store_artifacts :
17
17
path : wheelhouse/
18
18
19
+ linux-aarch64-wheels :
20
+ working_directory : ~/linux-aarch64-wheels
21
+ machine :
22
+ image : ubuntu-2004:2022.04.1
23
+ # resource_class is what tells CircleCI to use an ARM worker for native arm builds
24
+ # https://circleci.com/product/features/resource-classes/
25
+ resource_class : arm.medium
26
+ steps :
27
+ - checkout
28
+ - run :
29
+ name : Build the Linux aarch64 wheels.
30
+ command : |
31
+ python3 -m pip install --user cibuildwheel==2.10.2
32
+ python3 -m cibuildwheel --output-dir wheelhouse
33
+ - store_artifacts :
34
+ path : wheelhouse/
35
+
19
36
osx-wheels :
20
37
working_directory : ~/osx-wheels
21
38
macos :
@@ -35,4 +52,5 @@ workflows:
35
52
all-tests :
36
53
jobs :
37
54
- linux-wheels
55
+ - linux-aarch64-wheels
38
56
- osx-wheels
You can’t perform that action at this time.
0 commit comments