From f6a98350fcdddfd730deeafd33f0bbb6f45dc69c Mon Sep 17 00:00:00 2001 From: John Freeman Date: Fri, 15 Nov 2024 17:01:53 +0000 Subject: [PATCH] Fixed ARM Molecule tests Prefixing the image name with the architecture no longer works. --- molecule/ubuntu-arm32v7/molecule.yml | 3 ++- molecule/ubuntu-arm64v8/molecule.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/molecule/ubuntu-arm32v7/molecule.yml b/molecule/ubuntu-arm32v7/molecule.yml index 36c4398..cfa0a89 100644 --- a/molecule/ubuntu-arm32v7/molecule.yml +++ b/molecule/ubuntu-arm32v7/molecule.yml @@ -9,7 +9,8 @@ role_name_check: 2 platforms: - name: ansible-role-golang-ubuntu-arm32 - image: arm32v7/ubuntu:22.04 + image: ubuntu:22.04 + platform: linux/arm/v7 provisioner: name: ansible diff --git a/molecule/ubuntu-arm64v8/molecule.yml b/molecule/ubuntu-arm64v8/molecule.yml index 9683698..714a943 100644 --- a/molecule/ubuntu-arm64v8/molecule.yml +++ b/molecule/ubuntu-arm64v8/molecule.yml @@ -9,7 +9,8 @@ role_name_check: 2 platforms: - name: ansible-role-golang-ubuntu-arm64 - image: arm64v8/ubuntu:22.04 + image: ubuntu:22.04 + platform: linux/arm64 provisioner: name: ansible