-
Notifications
You must be signed in to change notification settings - Fork 145
209 lines (182 loc) · 6.37 KB
/
Copy pathci.yml
File metadata and controls
209 lines (182 loc) · 6.37 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# SPDX-FileCopyrightText: Copyright (c) <2025> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: read
jobs:
images:
name: Define Base Images
runs-on: ubuntu-latest
outputs:
lint: ghcr.io/nvidia/cutile-python/lint:2026-08-17-a7628e4fb5b7
docs: ghcr.io/nvidia/cutile-python/docs:2026-08-17-df9e000270a6
build_py310: ghcr.io/nvidia/cutile-python/build_py_3.10_x86_64:2026-08-17-f50b5fae652b
build_py311: ghcr.io/nvidia/cutile-python/build_py_3.11_x86_64:2026-08-17-9401767e701e
build_py312: ghcr.io/nvidia/cutile-python/build_py_3.12_x86_64:2026-08-17-d68c73d15c0a
build_py313: ghcr.io/nvidia/cutile-python/build_py_3.13_x86_64:2026-08-17-e66dd3d7ef7a
build_py314: ghcr.io/nvidia/cutile-python/build_py_3.14_x86_64:2026-08-17-931831a8d099
build_py314t: ghcr.io/nvidia/cutile-python/build_py_3.14t_x86_64:2026-08-17-28bcee962449
test_py310: ghcr.io/nvidia/cutile-python/test_py_3.10_x86_64:2026-08-17-8549280618e3
test_py311: ghcr.io/nvidia/cutile-python/test_py_3.11_x86_64:2026-08-17-a437217a163c
test_py312: ghcr.io/nvidia/cutile-python/test_py_3.12_x86_64:2026-08-17-85d044574dad
test_py313: ghcr.io/nvidia/cutile-python/test_py_3.13_x86_64:2026-08-17-7f71fb21a2a9
test_py314: ghcr.io/nvidia/cutile-python/test_py_3.14_x86_64:2026-08-17-4e620388d66f
test_py314t: ghcr.io/nvidia/cutile-python/test_py_3.14t_x86_64:2026-08-17-68e4e9c53f83
steps:
- run: echo "Defining image tags"
lint:
name: Lint
needs: images
runs-on: ubuntu-latest
timeout-minutes: 10
container:
image: ${{ needs.images.outputs.lint }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Mark workspace as safe directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Run flake8
run: flake8
- name: Run cpplint
run: python scripts/cpplint.py
- name: Check license headers
run: python scripts/check_license.py
- name: Check inline samples are up to date
run: python test/tools/inline_samples.py --check
docs:
name: Build Docs
needs: [images, build]
runs-on: ubuntu-latest
timeout-minutes: 10
container:
image: ${{ needs.images.outputs.docs }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Download wheel
uses: actions/download-artifact@v7
with:
name: wheel-py3.12-linux-x86_64
path: dist/
- name: Install wheel
run: pip install dist/*.whl
- name: Build documentation
run: make -C docs html
- name: Upload docs artifact
uses: actions/upload-artifact@v6
with:
name: docs-html
path: docs/build/html
retention-days: 7
build:
name: Build Wheel (Python ${{ matrix.python-version }})
needs: images
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.10"
image_key: build_py310
- python-version: "3.11"
image_key: build_py311
- python-version: "3.12"
image_key: build_py312
- python-version: "3.13"
image_key: build_py313
- python-version: "3.14"
image_key: build_py314
- python-version: "3.14t"
image_key: build_py314t
container:
image: ${{ needs.images.outputs[matrix.image_key] }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Build wheel
run: python setup.py bdist_wheel
- name: Upload wheel artifact
uses: actions/upload-artifact@v6
with:
name: wheel-py${{ matrix.python-version }}-linux-x86_64
path: dist/*.whl
if-no-files-found: error
retention-days: 7
test:
name: Test (Python ${{ matrix.python-version }})
needs: [images, build]
runs-on: [self-hosted, gpu]
timeout-minutes: 60
permissions:
contents: read
packages: read
checks: write
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.10"
image_key: test_py310
- python-version: "3.11"
image_key: test_py311
- python-version: "3.12"
image_key: test_py312
- python-version: "3.13"
image_key: test_py313
- python-version: "3.14"
image_key: test_py314
- python-version: "3.14t"
image_key: test_py314t
container:
image: ${{ needs.images.outputs[matrix.image_key] }}
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
options: --gpus all
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Mark workspace as safe directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Download wheel
uses: actions/download-artifact@v7
with:
name: wheel-py${{ matrix.python-version }}-linux-x86_64
path: dist/
- name: Install wheel
run: pip install dist/*.whl
- name: Run tests
run: pytest --ignore experimental --durations=10 --junitxml=test-results.xml -m "not benchmark" -k "not int64_index" .
- name: Report test results
if: ${{ !cancelled() }}
uses: dorny/test-reporter@v3
with:
name: Test Results (Python ${{ matrix.python-version }})
path: test-results.xml
reporter: java-junit
fail-on-error: false
- name: Run benchmarks
if: matrix.python-version == '3.10'
continue-on-error: true
run: pytest --ignore experimental --durations=10 --junitxml=benchmark-results.xml -m "benchmark" .
- name: Report benchmark results
if: ${{ !cancelled() && matrix.python-version == '3.10' }}
uses: dorny/test-reporter@v3
with:
name: Benchmark Results
path: benchmark-results.xml
reporter: java-junit
fail-on-error: false