remove armv-7

This commit is contained in:
Giulio 2022-04-11 16:10:56 +02:00
parent ee5f91fcad
commit f492f3995d
2 changed files with 1 additions and 21 deletions

View File

@ -32,16 +32,6 @@ jobs:
--output "type=image,push=false" \ --output "type=image,push=false" \
--tag albertoxamin/bang:latest \ --tag albertoxamin/bang:latest \
--file ./Dockerfile ./ --file ./Dockerfile ./
-
name: Docker Buildx (build armv-7)
run: |
docker buildx build \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/arm/v7 \
--output "type=image,push=false" \
--tag albertoxamin/bang:latest \
--file ./Dockerfile ./
- -
name: Login to DockerHub name: Login to DockerHub
uses: docker/login-action@v1 uses: docker/login-action@v1
@ -53,7 +43,7 @@ jobs:
run: | run: |
docker buildx build \ docker buildx build \
--cache-from "type=local,src=/tmp/.buildx-cache" \ --cache-from "type=local,src=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64,linux/arm/v7 \ --platform linux/amd64,linux/arm64 \
--output "type=image,push=true" \ --output "type=image,push=true" \
--tag albertoxamin/bang:latest \ --tag albertoxamin/bang:latest \
--file ./Dockerfile ./ --file ./Dockerfile ./

View File

@ -41,13 +41,3 @@ jobs:
--output "type=image,push=false" \ --output "type=image,push=false" \
--tag albertoxamin/bang:test \ --tag albertoxamin/bang:test \
--file ./Dockerfile ./ --file ./Dockerfile ./
-
name: Docker Buildx (test build armv-7)
run: |
docker buildx build \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/arm/v7 \
--output "type=image,push=false" \
--tag albertoxamin/bang:test \
--file ./Dockerfile ./