-
Notifications
You must be signed in to change notification settings - Fork 3
163 lines (146 loc) · 4.47 KB
/
package_linux.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: "Package Linux"
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
push:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
jobs:
#############################################################################
# Conda (CPU)
#############################################################################
conda-cpu-py312:
name: "Conda: py3.12, CPU"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: ubuntu-latest
python-version: "3.12"
artifact: conda-cpu-py312
conda-cpu-py311:
name: "Conda: py3.11, CPU"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: ubuntu-latest
python-version: "3.11"
artifact: conda-cpu-py311
conda-cpu-py310:
name: "Conda: py3.10, CPU"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: ubuntu-latest
python-version: "3.10"
artifact: conda-cpu-py310
conda-cpu-py310-test:
name: "Test Conda: py3.10, CPU"
needs: [ "conda-cpu-py310" ]
uses: ./.github/workflows/_conda_cpu_test.yml
with:
os: ubuntu-latest
python-version: "3.10"
artifact: conda-cpu-py310
#############################################################################
# Conda (CUDA-11.8)
#############################################################################
conda-cuda-py312-cu118:
name: "Conda: py3.12, cu11.8"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.12"
cu-version: "11.8.0"
artifact: conda-cuda-py312-cu118
conda-cuda-py311-cu118:
name: "Conda: py3.11, cu11.8"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.11"
cu-version: "11.8.0"
artifact: conda-cuda-py311-cu118
conda-cuda-py310-cu118:
name: "Conda: py3.10, cu11.8"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.10"
cu-version: "11.8.0"
artifact: conda-cuda-py310-cu118
conda-cuda-py310-cu118-test:
name: "Test Conda: py3.10, cu11.8"
uses: ./.github/workflows/_conda_cuda_test.yml
needs: [ "conda-cuda-py310-cu118" ]
with:
python-version: "3.10"
cu-version: "11.8"
artifact: conda-cuda-py310-cu118
#############################################################################
# Conda (CUDA-12.1)
#############################################################################
conda-cuda-py312-cu121:
name: "Conda: py3.12, cu12.1"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.12"
cu-version: "12.1.0"
artifact: conda-cuda-py312-cu121
conda-cuda-py311-cu121:
name: "Conda: py3.11, cu12.1"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.11"
cu-version: "12.1.0"
artifact: conda-cuda-py311-cu121
conda-cuda-py310-cu121:
name: "Conda: py3.10, cu12.1"
uses: ./.github/workflows/_conda_cuda_build.yml
with:
python-version: "3.10"
cu-version: "12.1.0"
artifact: conda-cuda-py310-cu121
conda-cuda-py310-cu121-test:
name: "Test Conda: py3.10, cu12.1"
uses: ./.github/workflows/_conda_cuda_test.yml
needs: [ conda-cuda-py310-cu121 ]
with:
python-version: "3.10"
cu-version: "12.1"
artifact: conda-cuda-py310-cu121
#############################################################################
# Wheel (CUDA-12.1)
#############################################################################
wheel-cuda-py312-cu121:
name: "Wheel: py3.12, cu12.1"
uses: ./.github/workflows/_wheel_cuda_build.yml
with:
python-version: "3.12"
cu-version: "12.1"
artifact: wheel-cuda-py312-cu121
wheel-cuda-py311-cu121:
name: "Wheel: py3.11, cu12.1"
uses: ./.github/workflows/_wheel_cuda_build.yml
with:
python-version: "3.11"
cu-version: "12.1"
artifact: wheel-cuda-py311-cu121
wheel-cuda-py310-cu121:
name: "Wheel: py3.10, cu12.1"
uses: ./.github/workflows/_wheel_cuda_build.yml
with:
python-version: "3.10"
cu-version: "12.1"
artifact: wheel-cuda-py310-cu121
wheel-cuda-py310-cu121-test:
name: "Test Wheel: py3.10, cu12.1"
needs: [ wheel-cuda-py310-cu121 ]
uses: ./.github/workflows/_wheel_cuda_test.yml
with:
python-version: "3.10"
cu-version: "12.1"
artifact: wheel-cuda-py310-cu121