From 0febe288fc546f3a9b62791b84acaeb3baa61496 Mon Sep 17 00:00:00 2001 From: MarkoSagadin Date: Fri, 16 Aug 2024 10:15:35 +0200 Subject: [PATCH] fix(actions): remove linux/arm64 build for vanilla-zephyr Some of the required packages are not supported on this platform. --- .github/workflows/build-and-publish-ncs-zephyr.yaml | 1 + .github/workflows/build-and-publish-vanilla-zephyr.yaml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish-ncs-zephyr.yaml b/.github/workflows/build-and-publish-ncs-zephyr.yaml index 4ab6ccd..b1ffa0c 100644 --- a/.github/workflows/build-and-publish-ncs-zephyr.yaml +++ b/.github/workflows/build-and-publish-ncs-zephyr.yaml @@ -42,6 +42,7 @@ jobs: registry: ${{ env.REGISTRY }} username: ${{github.actor}} password: ${{ secrets.GITHUB_TOKEN }} + logout: false - name: Build and push CI image id: push-ci diff --git a/.github/workflows/build-and-publish-vanilla-zephyr.yaml b/.github/workflows/build-and-publish-vanilla-zephyr.yaml index 57324e7..f6f716d 100644 --- a/.github/workflows/build-and-publish-vanilla-zephyr.yaml +++ b/.github/workflows/build-and-publish-vanilla-zephyr.yaml @@ -38,13 +38,14 @@ jobs: registry: ${{ env.REGISTRY }} username: ${{github.actor}} password: ${{ secrets.GITHUB_TOKEN }} + logout: false - name: Build and push CI image id: push-ci uses: docker/build-push-action@v5 with: file: ./vanilla-zephyr/Dockerfile.ci - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-ci:${{ inputs.release_version }} @@ -58,7 +59,7 @@ jobs: uses: docker/build-push-action@v5 with: file: ./vanilla-zephyr/Dockerfile.dev - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-dev:${{ inputs.release_version }}