-
-
Notifications
You must be signed in to change notification settings - Fork 16
191 lines (175 loc) · 5.41 KB
/
ci.yaml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
name: CI
on:
pull_request:
push:
branches: [main]
tags: ['v*']
workflow_dispatch:
inputs:
build:
description: 'Build'
required: true
default: true
jobs:
test:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: Install dev-requirements
run: pip install -r dev-requirements.txt
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test
run: cargo test --release
- name: Test no numpy installed works
run: |
pip uninstall numpy -y
cargo test --release --features nonumpy
build:
needs: test
runs-on: ${{ matrix.os.platform }}
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.build }}
strategy:
matrix:
python:
- version: '3.7'
- version: '3.8'
- version: '3.9'
- version: '3.10'
- version: '3.11'
- version: '3.12'
os:
- platform: ubuntu-latest
- platform: macos-latest
- platform: macos-latest
arch: aarch64
- platform: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python.constraints || matrix.python.version }}
# allow-prereleases: ${{ matrix.python.version == "3.12" }}
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os.platform }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: rustup target list
- name: Build Wheels - Linux
if: matrix.os.platform == 'ubuntu-latest'
uses: messense/maturin-action@v1
with:
maturin-version: v1.3.0
manylinux: auto
args: -i python${{ matrix.python.version }} --release --strip --sdist
- name: Build Wheels - MacOS [aarch64]
if: ${{ matrix.os.platform == 'macos-latest' && matrix.os.arch == 'aarch64' }}
uses: messense/maturin-action@v1
with:
maturin-version: v1.3.0
args: -i python --release --target aarch64-apple-darwin --strip
- name: Build Wheels - MacOS [x86_64]
if: ${{ matrix.os.platform == 'macos-latest' && matrix.os.arch != 'aarch64' }}
uses: messense/maturin-action@v1
with:
maturin-version: v1.3.0
args: -i python --release --target universal2-apple-darwin --strip
- name: Build Wheels - Windows
if: matrix.os.platform == 'windows-latest'
uses: messense/maturin-action@v1
with:
maturin-version: v1.3.0
args: -i python --release --strip
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: target/wheels
linux-cross:
needs: test
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.build }}
strategy:
matrix:
python:
- version: '3.7'
abi: 'cp37-cp37m'
- version: '3.8'
abi: 'cp38-cp38'
- version: '3.9'
abi: 'cp39-cp39'
- version: '3.10'
abi: 'cp310-cp310'
- version: '3.11'
abi: 'cp311-cp311'
- version: '3.12'
abi: 'cp312-cp312'
target: [aarch64, armv7, s390x, ppc64le, ppc64]
steps:
- uses: actions/checkout@v3
- name: Build Wheels
uses: messense/maturin-action@v1
env:
PYO3_CROSS_LIB_DIR: /opt/python/${{ matrix.python.abi }}/lib
with:
maturin-version: v1.3.0
target: ${{ matrix.target }}
manylinux: auto
args: -i python3.9 --release --strip
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: target/wheels
linux-musl:
needs: test
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.build }}
strategy:
matrix:
target:
- x86_64-unknown-linux-musl
- i686-unknown-linux-musl
- aarch64-unknown-linux-musl
- armv7-unknown-linux-musleabihf
steps:
- uses: actions/checkout@v3
- name: Build Wheels - musl
uses: messense/maturin-action@v1
with:
maturin-version: v1.3.0
target: ${{ matrix.target }}
manylinux: musllinux_1_2
args: --release --strip -i 3.7 3.8 3.9 3.10 3.11 3.12
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: target/wheels
publish:
needs: [build, linux-cross, linux-musl]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
- run: pip install maturin
- name: Release
uses: softprops/action-gh-release@v1
with:
files: pyxirr*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: PyPI publish
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: find . -name 'pyxirr*' | xargs -l maturin upload --skip-existing --username __token__