File tree 5 files changed +26
-34
lines changed
5 files changed +26
-34
lines changed Original file line number Diff line number Diff line change 7
7
description : ' The name of the image to build'
8
8
required : true
9
9
type : string
10
+ platform :
11
+ description : ' The Docker platform to build for'
12
+ required : false
13
+ type : string
14
+ default : linux/amd64
15
+ runner :
16
+ description : ' The GitHub runner to use'
17
+ required : false
18
+ type : string
19
+ default : ubuntu-24.04
10
20
11
21
env :
12
22
REGISTRY : ghcr.io
13
23
NAMESPACE : inko-lang/ci
14
24
15
25
jobs :
16
26
build :
17
- runs-on : ubuntu-24.04
27
+ runs-on : ${{ inputs.runner }}
18
28
permissions :
19
29
contents : read
20
30
packages : write
28
38
- uses : docker/build-push-action@v5
29
39
with :
30
40
context : ci/docker/${{ inputs.name }}
41
+ platforms : ${{ inputs.platform }}
31
42
push : true
32
43
tags : ${{ env.REGISTRY }}/${{ env.NAMESPACE }}:${{ inputs.name }}
Original file line number Diff line number Diff line change @@ -21,16 +21,24 @@ jobs:
21
21
fedora :
22
22
uses : ./.github/workflows/container.yml
23
23
with :
24
- name : ' fedora'
25
- alpine :
24
+ name : fedora
25
+ alpine-amd64 :
26
26
uses : ./.github/workflows/container.yml
27
27
with :
28
- name : ' alpine'
28
+ name : alpine
29
+ alpine-arm64 :
30
+ uses : ./.github/workflows/container.yml
31
+ with :
32
+ name : alpine
33
+ runner : ubuntu-24.04-arm
34
+ platform : linux/arm64
29
35
debian-amd64 :
30
36
uses : ./.github/workflows/container.yml
31
37
with :
32
- name : ' debian-amd64 '
38
+ name : debian
33
39
debian-arm64 :
34
40
uses : ./.github/workflows/container.yml
35
41
with :
36
- name : ' debian-arm64'
42
+ name : debian
43
+ runner : ubuntu-24.04-arm
44
+ platform : linux/arm64
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV PATH /opt/cargo/bin:$PATH
7
7
ENV RUSTUP_HOME /opt/rustup
8
8
ENV CARGO_HOME /opt/cargo
9
9
10
- RUN apk add --update build-base tar git rustup \
10
+ RUN apk add --update build-base tar git rustup rclone \
11
11
llvm$LLVM_VERSION llvm$LLVM_VERSION-dev llvm$LLVM_VERSION-static \
12
12
libstdc++-dev zlib-static zstd-static libxml2-static
13
13
Load Diff This file was deleted.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments