-
Notifications
You must be signed in to change notification settings - Fork 14
141 lines (124 loc) · 3.84 KB
/
tests.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
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
name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
# Run weekly, Friday at 7:15 EST.
- cron: '15 12 * * 5'
jobs:
build:
if: |
startsWith(github.ref, 'refs/tags/v0') ||
startsWith(github.ref, 'refs/tags/v1') ||
startsWith(github.ref, 'refs/tags/v2') ||
startsWith(github.ref, 'refs/tags/v3') ||
startsWith(github.ref, 'refs/tags/v4') ||
startsWith(github.ref, 'refs/tags/v5') ||
startsWith(github.ref, 'refs/tags/v6') ||
startsWith(github.ref, 'refs/tags/v7') ||
startsWith(github.ref, 'refs/tags/v8') ||
startsWith(github.ref, 'refs/tags/v9')
name: Build Wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install build
- name: Build
run: python -m build
- uses: actions/upload-artifact@v4
with:
path: |
./dist/*.whl
./dist/*.tar.gz
tests:
name: Tests
# always run, but wait for build if publishing
if: ${{ ! cancelled() }}
needs: [build]
runs-on: ubuntu-latest
env:
PUBLISH: >
${{
startsWith(github.ref, 'refs/tags/v0') ||
startsWith(github.ref, 'refs/tags/v1') ||
startsWith(github.ref, 'refs/tags/v2') ||
startsWith(github.ref, 'refs/tags/v3') ||
startsWith(github.ref, 'refs/tags/v4') ||
startsWith(github.ref, 'refs/tags/v5') ||
startsWith(github.ref, 'refs/tags/v6') ||
startsWith(github.ref, 'refs/tags/v7') ||
startsWith(github.ref, 'refs/tags/v8') ||
startsWith(github.ref, 'refs/tags/v9')
}}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Pre-install dependencies
run: |
pip install -vU pip
pip install -vU setuptools wheel Cython scipy 'numpy<2' # for corrfunc, classy
pip install -vU --no-build-isolation corrfunc classy
- name: Install package from source
if: ${{ env.PUBLISH != 'true' }}
run: |
pip install -vU .[test]
make -C pipe_asdf
- name: Fetch wheel
if: ${{ env.PUBLISH == 'true' }}
uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- name: Install package from wheel
if: ${{ env.PUBLISH == 'true' }}
run: |
pip install $(ls dist/*.whl)[test]
- name: Test Python with pytest
run: |
# TODO: set up environment in tox
export NUMBA_THREADING_LAYER=forksafe
pytest -v
- name: Test pipe_asdf
# no C test client from wheels
if: ${{ env.PUBLISH != 'true' }}
run: |
./tests/test_pipe_asdf.sh
upload:
name: PyPI Upload
if: |
startsWith(github.ref, 'refs/tags/v0') ||
startsWith(github.ref, 'refs/tags/v1') ||
startsWith(github.ref, 'refs/tags/v2') ||
startsWith(github.ref, 'refs/tags/v3') ||
startsWith(github.ref, 'refs/tags/v4') ||
startsWith(github.ref, 'refs/tags/v5') ||
startsWith(github.ref, 'refs/tags/v6') ||
startsWith(github.ref, 'refs/tags/v7') ||
startsWith(github.ref, 'refs/tags/v8') ||
startsWith(github.ref, 'refs/tags/v9')
needs: [build, tests]
environment: pypi
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1