From 75554aebc151ae060699ae0519368f95e2c7223d Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Tue, 19 Dec 2023 15:24:36 -0500 Subject: [PATCH] refactor(ci): clean up mulitarch matrix --- .github/workflows/ci.yml | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b60fc0..486c7c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -274,22 +274,11 @@ jobs: fail-fast: false matrix: include: - - from_image: amd64/centos - platform: x86_64-linux - dockerfile: centos - - from_image: navikey/raspbian-bullseye - platform: arm-linux - dockerfile: debian - - from_image: arm64v8/ubuntu - platform: aarch64-linux - dockerfile: debian - - from_image: i386/alpine - platform: x86-linux - dockerfile: alpine - - from_image: arm32v6/alpine - platform: arm-linux - dockerfile: alpine - + - {platform: aarch64-linux, dockerfile: debian, from_image: arm64v8/ubuntu } + - {platform: arm-linux, dockerfile: alpine, from_image: arm32v6/alpine } + - {platform: arm-linux, dockerfile: debian, from_image: navikey/raspbian-bullseye } + - {platform: x86-linux, dockerfile: alpine, from_image: i386/alpine } + - {platform: x86_64-linux, dockerfile: centos, from_image: amd64/centos } runs-on: ubuntu-latest steps: - uses: actions/checkout@v3