-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
85 lines (80 loc) · 2.11 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# After changing this file, check it on:
# http://lint.travis-ci.org/
# Greatly inspire from numpy builds
language: python
group: travis_latest
os: linux
dist: focal
env:
global:
- CIBW_BEFORE_TEST="CC=gcc CXX=g++ python -m pip install pytest cython>=0.20"
- CIBW_TEST="pytest cpt/tests"
- CIBW_BEFORE_BUILD="python -m pip install cython>=0.20"
# Disable clone depth
git:
depth: false
cache:
directories:
- $HOME/.cache/pip
jobs:
include:
- python: "3.8"
os: linux
arch: arm64
virt: vm
env:
- CIBW_BUILD: cp38-manylinux_aarch64
install: python3 -m pip install cibuildwheel==2.9.0
script: |
cibuildwheel --output-dir wheelhouse
./CI/github/build_wheels.sh
source CI/upload_wheels.sh
upload_wheels
- python: "3.8"
os: linux
arch: arm64
virt: vm
env:
- CIBW_BUILD: cp39-manylinux_aarch64
install: python3 -m pip install cibuildwheel==2.11.2
script: |
cibuildwheel --output-dir wheelhouse
./CI/github/build_wheels.sh
source CI/upload_wheels.sh
upload_wheels
- python: "3.8"
os: linux
arch: arm64
virt: vm
env:
- CIBW_BUILD: cp310-manylinux_aarch64
install: python3 -m pip install cibuildwheel==2.11.2
script: |
cibuildwheel --output-dir wheelhouse
./CI/github/build_wheels.sh
source CI/upload_wheels.sh
upload_wheels
- python: "3.8"
os: linux
arch: arm64
virt: vm
env:
- CIBW_BUILD: cp311-manylinux_aarch64
install: python3 -m pip install cibuildwheel==2.11.2
script: |
cibuildwheel --output-dir wheelhouse
./CI/github/build_wheels.sh
source CI/upload_wheels.sh
upload_wheels
- python: "3.8"
os: linux
arch: arm64
virt: vm
env:
- CIBW_BUILD: cp312-manylinux_aarch64
install: python3 -m pip install cibuildwheel==2.16.2
script: |
cibuildwheel --output-dir wheelhouse
./CI/github/build_wheels.sh
source CI/upload_wheels.sh
upload_wheels