From 21dec7e3bbc11e8562a17ca3b8fbc6d26f00ca40 Mon Sep 17 00:00:00 2001 From: James Addison Date: Sun, 10 Oct 2021 17:56:16 +0100 Subject: [PATCH] Attempt to add test coverage to multiarch.yml GHA workflow (nb: this depends on step uniqueness being determined at runtime rather than statically) --- .github/workflows/multiarch.yml | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/.github/workflows/multiarch.yml b/.github/workflows/multiarch.yml index b11377f..a902fed 100644 --- a/.github/workflows/multiarch.yml +++ b/.github/workflows/multiarch.yml @@ -19,6 +19,7 @@ jobs: matrix: arch: [ amd64, i386, arm64v8 ] install_latest: [ true, false ] + specify_platform: [ false, true ] steps: @@ -38,7 +39,8 @@ jobs: sudo apt-get update sudo apt-get install -y qemu-user-static - - name: Create Containerfile + - name: Create Containerfile (arch=${{ matrix.arch }}) + if: !matrix.specify_platform run: | cat > Containerfile< Containerfile<