Skip to content

Commit

Permalink
fix(actions): remove linux/arm64 build for vanilla-zephyr
Browse files Browse the repository at this point in the history
Some of the required packages are not supported on this platform.
  • Loading branch information
MarkoSagadin committed Aug 16, 2024
1 parent 7100081 commit 0febe28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-publish-ncs-zephyr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-and-publish-vanilla-zephyr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 0febe28

Please sign in to comment.