Skip to content

Commit fc445af

Browse files
committed
Build CI containers for AMD64 and ARM64
1 parent 1f69cbf commit fc445af

File tree

5 files changed

+26
-34
lines changed

5 files changed

+26
-34
lines changed

.github/workflows/container.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,24 @@ on:
77
description: 'The name of the image to build'
88
required: true
99
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
1020

1121
env:
1222
REGISTRY: ghcr.io
1323
NAMESPACE: inko-lang/ci
1424

1525
jobs:
1626
build:
17-
runs-on: ubuntu-24.04
27+
runs-on: ${{ inputs.runner }}
1828
permissions:
1929
contents: read
2030
packages: write
@@ -28,5 +38,6 @@ jobs:
2838
- uses: docker/build-push-action@v5
2939
with:
3040
context: ci/docker/${{ inputs.name }}
41+
platforms: ${{ inputs.platform }}
3142
push: true
3243
tags: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}:${{ inputs.name }}

.github/workflows/containers.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,24 @@ jobs:
2121
fedora:
2222
uses: ./.github/workflows/container.yml
2323
with:
24-
name: 'fedora'
25-
alpine:
24+
name: fedora
25+
alpine-amd64:
2626
uses: ./.github/workflows/container.yml
2727
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
2935
debian-amd64:
3036
uses: ./.github/workflows/container.yml
3137
with:
32-
name: 'debian-amd64'
38+
name: debian
3339
debian-arm64:
3440
uses: ./.github/workflows/container.yml
3541
with:
36-
name: 'debian-arm64'
42+
name: debian
43+
runner: ubuntu-24.04-arm
44+
platform: linux/arm64

ci/docker/alpine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV PATH /opt/cargo/bin:$PATH
77
ENV RUSTUP_HOME /opt/rustup
88
ENV CARGO_HOME /opt/cargo
99

10-
RUN apk add --update build-base tar git rustup \
10+
RUN apk add --update build-base tar git rustup rclone \
1111
llvm$LLVM_VERSION llvm$LLVM_VERSION-dev llvm$LLVM_VERSION-static \
1212
libstdc++-dev zlib-static zstd-static libxml2-static
1313

ci/docker/debian-arm64/Dockerfile

-27
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)