update github actions
This commit is contained in:
parent
ad9007628c
commit
65a3705e25
12
.github/workflows/dev-image.yml
vendored
12
.github/workflows/dev-image.yml
vendored
@ -32,16 +32,6 @@ jobs:
|
||||
--output "type=image,push=false" \
|
||||
--tag albertoxamin/bang:dev \
|
||||
--file ./Dockerfile ./
|
||||
-
|
||||
name: Docker Buildx (build arm64)
|
||||
run: |
|
||||
docker buildx build \
|
||||
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--cache-to "type=local,dest=/tmp/.buildx-cache" \
|
||||
--platform linux/arm64 \
|
||||
--output "type=image,push=false" \
|
||||
--tag albertoxamin/bang:dev \
|
||||
--file ./Dockerfile ./
|
||||
-
|
||||
name: Docker Buildx (build armv-7)
|
||||
run: |
|
||||
@ -63,7 +53,7 @@ jobs:
|
||||
run: |
|
||||
docker buildx build \
|
||||
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--platform linux/amd64,linux/arm/v7,linux/arm64 \
|
||||
--platform linux/amd64,linux/arm/v7 \
|
||||
--output "type=image,push=true" \
|
||||
--tag albertoxamin/bang:dev \
|
||||
--file ./Dockerfile ./
|
||||
|
4
.github/workflows/docker-image.yml
vendored
4
.github/workflows/docker-image.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
docker buildx build \
|
||||
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--cache-to "type=local,dest=/tmp/.buildx-cache" \
|
||||
--platform linux/amd64,linux/arm64 \
|
||||
--platform linux/amd64 \
|
||||
--output "type=image,push=false" \
|
||||
--tag albertoxamin/bang:latest \
|
||||
--file ./Dockerfile ./
|
||||
@ -53,7 +53,7 @@ jobs:
|
||||
run: |
|
||||
docker buildx build \
|
||||
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--platform linux/amd64,linux/arm64,linux/arm/v7 \
|
||||
--platform linux/amd64,linux/arm/v7 \
|
||||
--output "type=image,push=true" \
|
||||
--tag albertoxamin/bang:latest \
|
||||
--file ./Dockerfile ./
|
||||
|
56
.github/workflows/tests.yaml
vendored
56
.github/workflows/tests.yaml
vendored
@ -31,34 +31,34 @@ jobs:
|
||||
--output "type=image,push=false" \
|
||||
--tag albertoxamin/bang:test \
|
||||
--file ./Dockerfile ./
|
||||
build-arm64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: crazy-max/ghaction-docker-buildx@v3
|
||||
-
|
||||
name: Cache Docker layers
|
||||
uses: actions/cache@v3
|
||||
id: cache
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
-
|
||||
name: Docker Buildx (test build arm64)
|
||||
run: |
|
||||
docker buildx build \
|
||||
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--cache-to "type=local,dest=/tmp/.buildx-cache" \
|
||||
--platform linux/arm64 \
|
||||
--output "type=image,push=false" \
|
||||
--tag albertoxamin/bang:test \
|
||||
--file ./Dockerfile ./
|
||||
# build-arm64:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# -
|
||||
# name: Checkout
|
||||
# uses: actions/checkout@v3
|
||||
# -
|
||||
# name: Set up Docker Buildx
|
||||
# uses: crazy-max/ghaction-docker-buildx@v3
|
||||
# -
|
||||
# name: Cache Docker layers
|
||||
# uses: actions/cache@v3
|
||||
# id: cache
|
||||
# with:
|
||||
# path: /tmp/.buildx-cache
|
||||
# key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
# restore-keys: |
|
||||
# ${{ runner.os }}-buildx-
|
||||
# -
|
||||
# name: Docker Buildx (test build arm64)
|
||||
# run: |
|
||||
# docker buildx build \
|
||||
# --cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
# --cache-to "type=local,dest=/tmp/.buildx-cache" \
|
||||
# --platform linux/arm64 \
|
||||
# --output "type=image,push=false" \
|
||||
# --tag albertoxamin/bang:test \
|
||||
# --file ./Dockerfile ./
|
||||
build-armv-7:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
Loading…
Reference in New Issue
Block a user