2020-08-16 00:36:41 +02:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
2020-10-23 00:38:26 +02:00
|
|
|
workflow_dispatch:
|
2020-08-16 00:36:41 +02:00
|
|
|
push:
|
2020-09-12 20:53:25 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2020-08-16 00:36:41 +02:00
|
|
|
pull_request:
|
2020-09-12 20:53:25 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2020-08-16 00:36:41 +02:00
|
|
|
|
|
|
|
jobs:
|
2020-10-19 22:17:35 +02:00
|
|
|
minimal:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-19 22:17:35 +02:00
|
|
|
with:
|
|
|
|
path: action
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Build
|
|
|
|
uses: ./action
|
|
|
|
with:
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 10:07:11 +02:00
|
|
|
git-context:
|
2020-08-17 22:18:15 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-09-22 20:53:40 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-03 22:44:16 +02:00
|
|
|
with:
|
|
|
|
path: action
|
2020-09-22 20:53:40 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
driver-opts: network=host
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
2020-10-03 22:44:16 +02:00
|
|
|
uses: ./action
|
2020-09-22 20:53:40 +02:00
|
|
|
with:
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 09:51:06 +02:00
|
|
|
-
|
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-09-22 20:53:40 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
|
|
|
git-context-secret:
|
|
|
|
runs-on: ubuntu-latest
|
2020-09-05 05:18:15 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
2020-08-17 22:18:15 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-03 22:44:16 +02:00
|
|
|
with:
|
|
|
|
path: action
|
2020-08-17 22:18:15 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-qemu-action@v1
|
2020-08-17 22:18:15 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-08-17 22:18:15 +02:00
|
|
|
with:
|
2020-09-03 18:17:27 +02:00
|
|
|
driver-opts: network=host
|
2020-08-17 22:18:15 +02:00
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
2020-10-03 22:44:16 +02:00
|
|
|
uses: ./action
|
2020-08-17 22:18:15 +02:00
|
|
|
with:
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-09-02 10:07:11 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-08-17 22:18:15 +02:00
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-09-02 10:07:11 +02:00
|
|
|
secrets: |
|
2020-09-23 11:04:40 +02:00
|
|
|
GIT_AUTH_TOKEN=${{ github.token }}
|
2020-08-17 22:18:15 +02:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 09:51:06 +02:00
|
|
|
-
|
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-08-17 22:18:15 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 10:07:11 +02:00
|
|
|
path-context:
|
2020-08-16 00:36:41 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-23 03:31:38 +02:00
|
|
|
buildx-version:
|
|
|
|
- ""
|
|
|
|
- latest
|
2020-09-05 05:18:15 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
2020-08-16 00:36:41 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-08-16 00:36:41 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-qemu-action@v1
|
2020-08-16 00:36:41 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-08-17 02:33:38 +02:00
|
|
|
with:
|
2020-08-23 03:31:38 +02:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-09-03 18:17:27 +02:00
|
|
|
driver-opts: network=host
|
2020-08-16 00:36:41 +02:00
|
|
|
-
|
|
|
|
name: Build and push
|
2020-08-23 04:07:29 +02:00
|
|
|
id: docker_build
|
2020-08-16 00:36:41 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
2020-09-02 10:07:11 +02:00
|
|
|
file: ./test/Dockerfile
|
2020-08-16 03:21:48 +02:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-08-17 02:33:38 +02:00
|
|
|
push: true
|
2020-08-16 00:36:41 +02:00
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-08-17 02:42:46 +02:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
2020-08-23 04:06:55 +02:00
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 02:46:41 +02:00
|
|
|
-
|
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-08-16 00:36:41 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
2020-08-16 17:18:08 +02:00
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-10-21 21:07:52 +02:00
|
|
|
error:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-21 21:07:52 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Build
|
2020-10-23 00:38:26 +02:00
|
|
|
id: docker_build
|
2020-10-21 21:07:52 +02:00
|
|
|
continue-on-error: true
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
|
|
|
push: true
|
|
|
|
tags: localhost:5000/name/app:latest
|
2020-10-23 00:38:26 +02:00
|
|
|
-
|
|
|
|
name: Check
|
|
|
|
run: |
|
|
|
|
echo "${{ toJson(steps.docker_build) }}"
|
|
|
|
if [ "${{ steps.docker_build.outcome }}" != "failure" ] || [ "${{ steps.docker_build.conclusion }}" != "success" ]; then
|
|
|
|
echo "::error::Should have failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-21 21:07:52 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
|
|
|
docker-driver:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
push:
|
|
|
|
- true
|
|
|
|
- false
|
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-21 21:07:52 +02:00
|
|
|
-
|
|
|
|
name: Build
|
2020-10-23 00:38:26 +02:00
|
|
|
id: docker_build
|
2020-10-21 21:07:52 +02:00
|
|
|
continue-on-error: ${{ matrix.push }}
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
push: ${{ matrix.push }}
|
|
|
|
tags: localhost:5000/name/app:latest
|
2020-10-23 00:38:26 +02:00
|
|
|
-
|
|
|
|
name: Check
|
|
|
|
run: |
|
|
|
|
echo "${{ toJson(steps.docker_build) }}"
|
|
|
|
if [ "${{ matrix.push }}" = "false" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if [ "${{ steps.docker_build.outcome }}" != "failure" ] || [ "${{ steps.docker_build.conclusion }}" != "success" ]; then
|
|
|
|
echo "::error::Should have failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-21 21:07:52 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-10-22 21:50:22 +02:00
|
|
|
export-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-22 21:50:22 +02:00
|
|
|
-
|
|
|
|
name: Build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
load: true
|
|
|
|
tags: myimage:latest
|
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker image inspect myimage:latest
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 10:07:11 +02:00
|
|
|
multi:
|
2020-08-29 16:10:05 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-09-02 10:07:11 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildx-version:
|
|
|
|
- ""
|
|
|
|
- latest
|
|
|
|
dockerfile:
|
|
|
|
- multi
|
|
|
|
- multi-sudo
|
2020-09-05 05:18:15 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
2020-08-29 16:10:05 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-08-29 16:10:05 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-qemu-action@v1
|
2020-08-29 16:10:05 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-08-29 16:10:05 +02:00
|
|
|
with:
|
2020-09-02 10:07:11 +02:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-09-03 18:17:27 +02:00
|
|
|
driver-opts: network=host
|
2020-08-29 16:10:05 +02:00
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
2020-09-02 10:07:11 +02:00
|
|
|
file: ./test/Dockerfile-${{ matrix.dockerfile }}
|
2020-08-29 16:10:05 +02:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 09:51:06 +02:00
|
|
|
-
|
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-08-29 16:10:05 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-10-04 00:01:14 +02:00
|
|
|
registry-cache:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
2020-10-11 19:17:08 +02:00
|
|
|
driver-opts: |
|
|
|
|
network=host
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Build and push (1)
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile-multi
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-10-04 01:10:42 +02:00
|
|
|
cache-from: type=registry,ref=localhost:5000/name/app
|
|
|
|
cache-to: type=inline
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Inspect (1)
|
|
|
|
run: |
|
2020-10-04 01:10:42 +02:00
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:latest
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Image digest (1)
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 09:51:06 +02:00
|
|
|
-
|
|
|
|
name: Check digest (1)
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Prune
|
|
|
|
run: |
|
|
|
|
docker buildx prune -a -f --verbose
|
|
|
|
-
|
|
|
|
name: Build and push (2)
|
|
|
|
id: docker_build2
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile-multi
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-10-04 01:10:42 +02:00
|
|
|
cache-from: type=registry,ref=localhost:5000/name/app
|
|
|
|
cache-to: type=inline
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Inspect (2)
|
|
|
|
run: |
|
2020-10-04 01:10:42 +02:00
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:latest
|
2020-10-04 00:01:14 +02:00
|
|
|
-
|
|
|
|
name: Image digest (2)
|
|
|
|
run: echo ${{ steps.docker_build2.outputs.digest }}
|
|
|
|
-
|
2020-10-21 09:51:06 +02:00
|
|
|
name: Check digest (2)
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build2.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
-
|
|
|
|
name: Compare digests
|
2020-10-04 00:01:14 +02:00
|
|
|
run: |
|
|
|
|
echo Compare "${{ steps.docker_build.outputs.digest }}" with "${{ steps.docker_build2.outputs.digest }}"
|
|
|
|
if [ "${{ steps.docker_build.outputs.digest }}" != "${{ steps.docker_build2.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digests should be identical"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-10-03 22:44:16 +02:00
|
|
|
github-cache-first:
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-03 23:33:32 +02:00
|
|
|
outputs:
|
|
|
|
digest: ${{ steps.docker_build.outputs.digest }}
|
2020-10-03 22:44:16 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-10-03 22:44:16 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
2020-10-11 19:17:08 +02:00
|
|
|
driver-opts: |
|
|
|
|
network=host
|
2020-10-03 22:44:16 +02:00
|
|
|
-
|
|
|
|
name: Cache Docker layers
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
key: ${{ runner.os }}-buildx-ghcache-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildx-ghcache-
|
|
|
|
-
|
|
|
|
name: Erase cache
|
|
|
|
run: |
|
|
|
|
rm -rf /tmp/.buildx-cache/*
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
2020-10-21 09:51:06 +02:00
|
|
|
file: ./test/Dockerfile-multi
|
2020-10-03 22:44:16 +02:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-21 09:51:06 +02:00
|
|
|
-
|
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-03 22:44:16 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
|
|
|
github-cache-hit:
|
2020-08-16 17:55:47 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-10-03 22:44:16 +02:00
|
|
|
needs: github-cache-first
|
2020-09-05 05:18:15 +02:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
2020-08-16 17:55:47 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 10:06:56 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-08-16 17:55:47 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-qemu-action@v1
|
2020-08-16 17:55:47 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-09-09 00:32:40 +02:00
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-08-16 19:22:14 +02:00
|
|
|
with:
|
2020-10-11 19:17:08 +02:00
|
|
|
driver-opts: |
|
|
|
|
network=host
|
2020-09-02 10:07:11 +02:00
|
|
|
-
|
|
|
|
name: Cache Docker layers
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: cache
|
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
2020-10-03 22:44:16 +02:00
|
|
|
key: ${{ runner.os }}-buildx-ghcache-${{ github.sha }}
|
2020-09-02 10:07:11 +02:00
|
|
|
restore-keys: |
|
2020-10-03 22:44:16 +02:00
|
|
|
${{ runner.os }}-buildx-ghcache-
|
2020-08-16 17:55:47 +02:00
|
|
|
-
|
|
|
|
name: Build and push
|
2020-08-23 04:07:29 +02:00
|
|
|
id: docker_build
|
2020-08-16 17:55:47 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-09-02 10:07:11 +02:00
|
|
|
context: ./test
|
2020-10-21 09:51:06 +02:00
|
|
|
file: ./test/Dockerfile-multi
|
2020-08-16 17:55:47 +02:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-08-16 22:38:03 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-08-17 02:33:38 +02:00
|
|
|
push: true
|
2020-08-16 17:55:47 +02:00
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-09-02 10:07:11 +02:00
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
2020-08-17 02:42:46 +02:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
2020-08-23 04:06:55 +02:00
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-10-03 23:33:32 +02:00
|
|
|
-
|
2020-10-21 09:51:06 +02:00
|
|
|
name: Check digest
|
|
|
|
run: |
|
|
|
|
if [ -z "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digest should not be empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
-
|
|
|
|
name: Compare digests
|
2020-10-03 23:33:32 +02:00
|
|
|
run: |
|
|
|
|
echo Compare "${{ needs.github-cache-first.outputs.digest }}" with "${{ steps.docker_build.outputs.digest }}"
|
|
|
|
if [ "${{ needs.github-cache-first.outputs.digest }}" != "${{ steps.docker_build.outputs.digest }}" ]; then
|
|
|
|
echo "::error::Digests should be identical"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-09-02 10:07:11 +02:00
|
|
|
-
|
|
|
|
name: Cache hit
|
|
|
|
run: echo ${{ steps.cache.outputs.cache-hit }}
|
2020-08-16 17:55:47 +02:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|