Skip to content

Commit f4a2d3c

Browse files
authored
Build arm64 test container by default (#2147)
After the changes introduced in #2106, we are building arm64 images by default and trying to test them. If a change is made to the integration tests, we are only building the amd64 version of the container and the arm64 tests fail when trying to pull the image for that architecture. This patch makes it so the test container is built for amd64 and arm64 by default.
1 parent 1715580 commit f4a2d3c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/integration-test-containers.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
- integration-tests/images.yml
4949
- integration-tests/Dockerfile
5050
- .github/workflows/integration-test-containers.yml
51+
- ansible/ci-build-tests.yml
5152
5253
build-test-image:
5354
name: Build the integration test image

ansible/ci-build-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
when: build_multi_arch
1111

1212
- set_fact:
13-
platforms: "linux/amd64"
13+
platforms: "linux/amd64,linux/arm64"
1414
when: not build_multi_arch
1515

1616
- set_fact:

0 commit comments

Comments
 (0)