-
Notifications
You must be signed in to change notification settings - Fork 489
169 lines (167 loc) · 5.46 KB
/
publish.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
164
165
166
167
168
169
name: publish
on:
push:
tags:
- "v*"
jobs:
publish-burn-derive:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-derive
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-dataset:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-dataset
needs:
- publish-burn-common
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-common:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-common
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-compute:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-common
with:
crate: burn-compute
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-tensor-testgen:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-tensor-testgen
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-tensor:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor-testgen
- publish-burn-common
with:
crate: burn-tensor
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-fusion:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-common
with:
crate: burn-fusion
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-jit:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-common
- publish-burn-fusion
- publish-burn-tensor
- publish-burn-ndarray
with:
crate: burn-jit
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-autodiff:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-tensor-testgen
- publish-burn-common
with:
crate: burn-autodiff
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-tch:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-autodiff
with:
crate: burn-tch
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-ndarray:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-autodiff
- publish-burn-common
with:
crate: burn-ndarray
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-wgpu:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-compute
- publish-burn-autodiff
- publish-burn-ndarray
- publish-burn-common
- publish-burn-jit
with:
crate: burn-wgpu
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-candle:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-tensor
- publish-burn-autodiff
- publish-burn-tch
with:
crate: burn-candle
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-core:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-dataset
- publish-burn-common
- publish-burn-derive
- publish-burn-tensor
- publish-burn-autodiff
- publish-burn-wgpu
- publish-burn-tch
- publish-burn-ndarray
- publish-burn-candle
with:
crate: burn-core
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-train:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-core
with:
crate: burn-train
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn-core
- publish-burn-train
with:
crate: burn
secrets: inherit
# --------------------------------------------------------------------------------
publish-burn-import:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
needs:
- publish-burn
with:
crate: burn-import
secrets: inherit
# --------------------------------------------------------------------------------
publish-onnx-ir:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: onnx-ir
secrets: inherit