File tree Expand file tree Collapse file tree 2 files changed +77
-1
lines changed Expand file tree Collapse file tree 2 files changed +77
-1
lines changed Original file line number Diff line number Diff line change 5
5
- ' *'
6
6
7
7
jobs :
8
+ # RedHat
9
+
8
10
el8_64 :
9
11
runs-on : ubuntu-latest
10
12
steps :
45
47
packager_tag : el9-go1.24
46
48
version : tag
47
49
50
+ # Debian
51
+
48
52
bookworm_64 :
49
53
runs-on : ubuntu-latest
50
54
steps :
@@ -125,6 +129,48 @@ jobs:
125
129
packager_tag : bullseye-go1.24
126
130
version : tag
127
131
132
+ trixie_64 :
133
+ runs-on : ubuntu-latest
134
+ steps :
135
+ - name : Build
136
+ uses : choria-io/actions/packager@main
137
+ with :
138
+ build_package : trixie_64
139
+ packager_tag : trixie-go1.24
140
+ version : tag
141
+
142
+ trixie_aarch64 :
143
+ runs-on : ubuntu-latest
144
+ steps :
145
+ - name : Build
146
+ uses : choria-io/actions/packager@main
147
+ with :
148
+ build_package : trixie_aarch64
149
+ packager_tag : trixie-go1.24
150
+ version : tag
151
+
152
+ trixie_armel :
153
+ runs-on : ubuntu-latest
154
+ steps :
155
+ - name : Build
156
+ uses : choria-io/actions/packager@main
157
+ with :
158
+ build_package : trixie_armel
159
+ packager_tag : trixie-go1.24
160
+ version : tag
161
+
162
+ trixie_armhf :
163
+ runs-on : ubuntu-latest
164
+ steps :
165
+ - name : Build
166
+ uses : choria-io/actions/packager@main
167
+ with :
168
+ build_package : trixie_armhf
169
+ packager_tag : trixie-go1.24
170
+ version : tag
171
+
172
+ # Ubuntu
173
+
128
174
bionic_64 :
129
175
runs-on : ubuntu-latest
130
176
steps :
@@ -205,6 +251,8 @@ jobs:
205
251
packager_tag : noble-go1.24
206
252
version : tag
207
253
254
+ # Windows
255
+
208
256
windows_64 :
209
257
runs-on : ubuntu-latest
210
258
steps :
@@ -227,6 +275,10 @@ jobs:
227
275
- bookworm_aarch64
228
276
- bookworm_armel
229
277
- bookworm_armhf
278
+ - trixie_64
279
+ - trixie_aarch64
280
+ - trixie_armel
281
+ - trixie_armhf
230
282
- el8_64
231
283
- el8_ppc64le
232
284
- el9_64
@@ -264,4 +316,4 @@ jobs:
264
316
AWS_ACCESS_KEY_ID : ${{ secrets.SPACES_ACCESS_KEY_ID }}
265
317
AWS_SECRET_ACCESS_KEY : ${{ secrets.SPACES_SECRET_ACCESS_KEY }}
266
318
SOURCE_DIR : artifacts
267
- DEST_DIR : release
319
+ DEST_DIR : release
Original file line number Diff line number Diff line change @@ -270,6 +270,30 @@ foss:
270
270
binary : aarch64_linux
271
271
distro : bullseye
272
272
273
+ trixie_armel :
274
+ template : debian/generic
275
+ target_arch : arm-linux-gnueabi
276
+ binary : armv5_linux
277
+ distro : trixie
278
+
279
+ trixie_armhf :
280
+ template : debian/generic
281
+ target_arch : arm-linux-gnueabihf
282
+ binary : armv7_linux
283
+ distro : trixie
284
+
285
+ trixie_64 :
286
+ template : debian/generic
287
+ target_arch : x86_64-linux-gnu
288
+ binary : 64bit_linux
289
+ distro : trixie
290
+
291
+ trixie_aarch64 :
292
+ template : debian/generic
293
+ target_arch : aarch64-linux-gnu
294
+ binary : aarch64_linux
295
+ distro : trixie
296
+
273
297
windows_64 :
274
298
name : Choria
275
299
display_name : Choria Orchestrator
You can’t perform that action at this time.
0 commit comments