Skip to content

Commit 8305aeb

Browse files
committed
.github/workflows - add arm to cluster-components
1 parent 36af74f commit 8305aeb

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/client-components.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
push:
77
tags:
88
- "v*.*.*"
9-
# branches:
10-
# - b-*
11-
# - main
12-
# - dev
9+
branches:
10+
- b-*
11+
- main
12+
- dev
1313
jobs:
1414
build:
1515
name: build-${{ matrix.component }}-${{ matrix.arch }}
@@ -19,14 +19,14 @@ jobs:
1919
component: [cordium]
2020
arch:
2121
- amd64
22-
# - arm64
22+
- arm64
2323
include:
2424
- arch: amd64
2525
platform: linux/amd64
2626
runner: ubuntu-24.04
27-
# - arch: arm64
28-
# platform: linux/arm64
29-
# runner: ubuntu-24.04-arm
27+
- arch: arm64
28+
platform: linux/arm64
29+
runner: ubuntu-24.04-arm
3030
steps:
3131
- name: Check out code into the Go module directory
3232
uses: actions/checkout@v4

.github/workflows/cluster-components.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
- "v*.*.*"
99
branches:
1010
- b-*
11-
# - main
12-
# - dev
11+
- main
12+
- dev
1313

1414
jobs:
1515
build:
@@ -30,14 +30,14 @@ jobs:
3030
]
3131
arch:
3232
- amd64
33-
# - arm64
33+
- arm64
3434
include:
3535
- arch: amd64
3636
platform: linux/amd64
3737
runner: ubuntu-24.04
38-
# - arch: arm64
39-
# platform: linux/arm64
40-
# runner: ubuntu-24.04-arm
38+
- arch: arm64
39+
platform: linux/arm64
40+
runner: ubuntu-24.04-arm
4141
steps:
4242
- name: Check out code into the Go module directory
4343
uses: actions/checkout@v4
@@ -180,6 +180,6 @@ jobs:
180180
docker buildx imagetools create \
181181
"${ANNOTATIONS[@]}" \
182182
-t "$TAG" \
183-
"${BASE_IMAGE}:${VERSION}-amd64"
184-
# "${BASE_IMAGE}:${VERSION}-arm64"
183+
"${BASE_IMAGE}:${VERSION}-amd64" \
184+
"${BASE_IMAGE}:${VERSION}-arm64"
185185
done

0 commit comments

Comments
 (0)