Skip to content

Commit

Permalink
fix: arm ci/cd build with node20
Browse files Browse the repository at this point in the history
# linux/arm/v7 arm32 is not supported by node20 nodejs/docker-node#1946
  • Loading branch information
Ravinou committed Feb 4, 2024
1 parent 731be37 commit 45b211f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-develop.yml
Expand Up @@ -25,5 +25,5 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64 # linux/arm/v7 arm32 is not supported by node20 https://github.com/nodejs/docker-node/issues/1946
tags: borgwarehouse/borgwarehouse:develop
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-latest.yml
Expand Up @@ -25,5 +25,5 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64 # linux/arm/v7 arm32 is not supported by node20 https://github.com/nodejs/docker-node/issues/1946
tags: borgwarehouse/borgwarehouse:latest
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-release.yml
Expand Up @@ -28,5 +28,5 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64 # linux/arm/v7 arm32 is not supported by node20 https://github.com/nodejs/docker-node/issues/1946
tags: borgwarehouse/borgwarehouse:${{ steps.get_release_tag.outputs.TAG }}
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-test.yml
Expand Up @@ -18,4 +18,4 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build Docker Container
run: |
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t borgwarehouse:pr-${{ github.event.pull_request.number }} .
docker buildx build --platform linux/amd64,linux/arm64 -t borgwarehouse:pr-${{ github.event.pull_request.number }} .

0 comments on commit 45b211f

Please sign in to comment.