13
13
fail-fast : false
14
14
matrix :
15
15
os :
16
- - ubuntu-22 .04
17
- - macos-12 # Intel
18
- - macos-13-xlarge # Apple silicon
16
+ - ubuntu-24 .04
17
+ - macos-13 # Intel
18
+ - macos-14 # Apple silicon
19
19
- windows-2022
20
20
ghc-version :
21
21
- " 8.8"
@@ -24,19 +24,19 @@ jobs:
24
24
- " 9.2"
25
25
- " 9.4"
26
26
exclude :
27
- - os : macos-12
27
+ - os : macos-13
28
28
ghc-version : " 8.10"
29
- - os : macos-12
29
+ - os : macos-13
30
30
ghc-version : " 9.0"
31
- - os : macos-12
31
+ - os : macos-13
32
32
ghc-version : " 9.2"
33
- - os : macos-13-xlarge
33
+ - os : macos-14
34
34
ghc-version : " 8.8"
35
- - os : macos-13-xlarge
35
+ - os : macos-14
36
36
ghc-version : " 8.10"
37
- - os : macos-13-xlarge
37
+ - os : macos-14
38
38
ghc-version : " 9.0"
39
- - os : macos-13-xlarge
39
+ - os : macos-14
40
40
ghc-version : " 9.2"
41
41
- os : windows-2022
42
42
ghc-version : " 8.10"
@@ -178,9 +178,9 @@ jobs:
178
178
fail-fast : false
179
179
matrix :
180
180
os :
181
- - ubuntu-22 .04
182
- - macos-12 # Intel
183
- - macos-13-xlarge # Apple silicon
181
+ - ubuntu-24 .04
182
+ - macos-13 # Intel
183
+ - macos-14 # Apple silicon
184
184
- windows-2022
185
185
steps :
186
186
- uses : actions/checkout@v4
@@ -266,12 +266,21 @@ jobs:
266
266
267
267
image :
268
268
name : Docker image
269
- runs-on : ubuntu-22.04
269
+ strategy :
270
+ fail-fast : false
271
+ matrix :
272
+ os :
273
+ - ubuntu-24.04
274
+ - ubuntu-24.04-arm
275
+ runs-on : ${{ matrix.os }}
270
276
env :
271
277
DOCKERHUB_IMAGE_NAME : seonbi
272
278
outputs :
273
279
image-ghcr : ghcr.io/${{ github.repository }}/bin@${{ steps.push-image.outputs.digest }}
274
280
image-dockerhub : docker.io/${{ vars.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_IMAGE_NAME }}@${{ steps.push-image.outputs.digest }}
281
+ tag : ${{ steps.values.outputs.tag }}
282
+ labels : ${{ steps.values.outputs.labels }}
283
+ arch : ${{ steps.values.outputs.arch }}
275
284
steps :
276
285
- uses : actions/checkout@v4
277
286
with :
@@ -303,6 +312,11 @@ jobs:
303
312
else
304
313
echo labels= >> "$GITHUB_OUTPUT"
305
314
fi
315
+ if [[ "$RUNNER_ARCH" = "ARM64" ]]; then
316
+ echo arch=arm64 >> "$GITHUB_OUTPUT"
317
+ else
318
+ echo arch=amd64 >> "$GITHUB_OUTPUT"
319
+ fi
306
320
- id : push-image
307
321
uses : docker/build-push-action@v6
308
322
with :
@@ -313,10 +327,23 @@ jobs:
313
327
org.opencontainers.image.url=${{ github.event.repository.html_url }}
314
328
${{ steps.values.outputs.labels }}
315
329
tags : |
316
- ghcr.io/${{ github.repository }}/bin:${{ steps.values.outputs.tag }}
317
- ${{ vars.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_IMAGE_NAME }}:${{ steps.values.outputs.tag }}
330
+ ghcr.io/${{ github.repository }}/bin:${{ steps.values.outputs.tag }}-${{ steps.values.outputs.arch }}
331
+ ${{ vars.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_IMAGE_NAME }}:${{ steps.values.outputs.tag }}-${{ steps.values.outputs.arch }}
318
332
provenance : false # https://community.fly.io/t/deploying-to-fly-via-github-action-failing/10171/33
319
333
334
+ image-manifest :
335
+ name : Create and push manifest images
336
+ if : github.event_name != 'pull_request'
337
+ needs :
338
+ - image
339
+ runs-on : ubuntu-24.04
340
+ steps :
341
+ -
uses :
Noelware/[email protected]
342
+ with :
343
+ inputs : ${{ needs.image.outputs.tag }}
344
+ images : ${{ needs.image.oputputs.tag }}-amd64,${{ needs.image.oputputs.tag }}-arm64
345
+ push : true
346
+
320
347
fly :
321
348
name : Deploy seonbi-api to Fly.io
322
349
if : github.event_name == 'push' && github.ref == 'refs/heads/main'
@@ -325,7 +352,7 @@ jobs:
325
352
env :
326
353
FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
327
354
IMAGE : ${{ needs.image.outputs.image-ghcr }}
328
- runs-on : ubuntu-22 .04
355
+ runs-on : ubuntu-24 .04
329
356
steps :
330
357
- uses : actions/checkout@v4
331
358
- uses : superfly/flyctl-actions/setup-flyctl@master
@@ -345,16 +372,16 @@ jobs:
345
372
needs :
346
373
- build
347
374
- image
348
- runs-on : ubuntu-22 .04
375
+ runs-on : ubuntu-24 .04
349
376
steps :
350
377
- uses : actions/checkout@v4
351
378
- uses : actions/download-artifact@v4
352
379
with :
353
- name : binaries-macos-13-xlarge -ghc-9.4
380
+ name : binaries-macos-14 -ghc-9.4
354
381
path : /tmp/binaries-macos-arm64
355
382
- uses : actions/download-artifact@v4
356
383
with :
357
- name : binaries-macos-12 -ghc-9.4
384
+ name : binaries-macos-13 -ghc-9.4
358
385
path : /tmp/binaries-macos-x86_64
359
386
- uses : actions/download-artifact@v4
360
387
with :
@@ -363,18 +390,30 @@ jobs:
363
390
- run : |
364
391
set -e
365
392
mkdir -p /tmp/dists
366
- # Linux
367
- docker pull "$IMAGE"
368
- mkdir -p /tmp/binaries-linux
369
- docker run -i "$IMAGE" cat /usr/local/bin/seonbi \
370
- > /tmp/binaries-linux/seonbi
371
- docker run -i "$IMAGE" cat /usr/local/bin/seonbi-api \
372
- > /tmp/binaries-linux/seonbi-api
373
- pushd /tmp/binaries-linux
393
+ # Linux (amd64)
394
+ docker pull "$IMAGE-amd64 "
395
+ mkdir -p /tmp/binaries-linux-amd64
396
+ docker run -i "$IMAGE-amd64 " cat /usr/local/bin/seonbi \
397
+ > /tmp/binaries-linux-amd64 /seonbi
398
+ docker run -i "$IMAGE-amd64 " cat /usr/local/bin/seonbi-api \
399
+ > /tmp/binaries-linux-amd64 /seonbi-api
400
+ pushd /tmp/binaries-linux-amd64
374
401
chmod +x *
375
402
cp "$GITHUB_WORKSPACE/"{LICENSE,README.md,CHANGES.md} ./
376
403
tar cvfj /tmp/dists/seonbi.linux-x86_64.tar.bz2 *
377
404
popd
405
+ # Linux (arm64)
406
+ docker pull "$IMAGE-arm64"
407
+ mkdir -p /tmp/binaries-linux-arm64
408
+ docker run -i "$IMAGE-arm64" cat /usr/local/bin/seonbi \
409
+ > /tmp/binaries-linux-arm64/seonbi
410
+ docker run -i "$IMAGE-arm64" cat /usr/local/bin/seonbi-api \
411
+ > /tmp/binaries-linux-arm64/seonbi-api
412
+ pushd /tmp/binaries-linux-arm64
413
+ chmod +x *
414
+ cp "$GITHUB_WORKSPACE/"{LICENSE,README.md,CHANGES.md} ./
415
+ tar cvfj /tmp/dists/seonbi.linux-arm64.tar.bz2 *
416
+ popd
378
417
# macOS (Apple silicon)
379
418
pushd /tmp/binaries-macos-arm64
380
419
chmod +x *
@@ -404,12 +443,12 @@ jobs:
404
443
needs :
405
444
- build
406
445
- binaries
407
- runs-on : ubuntu-22 .04
446
+ runs-on : ubuntu-24 .04
408
447
steps :
409
448
- uses : actions/checkout@v4
410
449
- uses : actions/download-artifact@v4
411
450
with :
412
- name : sdist-ubuntu-22 .04-ghc-9.4
451
+ name : sdist-ubuntu-24 .04-ghc-9.4
413
452
path : /tmp/sdist
414
453
- uses : actions/download-artifact@v4
415
454
with :
@@ -458,7 +497,7 @@ jobs:
458
497
if : >-
459
498
github.event_name != 'pull_request' &&
460
499
github.ref == 'refs/heads/main'
461
- runs-on : ubuntu-22 .04
500
+ runs-on : ubuntu-24 .04
462
501
steps :
463
502
- uses : actions/checkout@v4
464
503
- uses : actions/download-artifact@v4
0 commit comments