2020-08-15 18:36:41 -04:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v2-working-branch # remove when merged to master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v2-working-branch # remove when merged to master
|
|
|
|
|
|
|
|
jobs:
|
2020-09-02 04:07:11 -04:00
|
|
|
git-context:
|
2020-08-17 16:18:15 -04:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-22 21:31:38 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildx-version:
|
|
|
|
- latest
|
2020-08-17 16:18:15 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Run local registry
|
|
|
|
run: |
|
|
|
|
docker run -d -p 5000:5000 registry:2
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-qemu-action@master
|
2020-08-17 16:18:15 -04:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-buildx-action@master
|
2020-08-17 16:18:15 -04:00
|
|
|
with:
|
2020-08-22 21:31:38 -04:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-09-03 12:17:27 -04:00
|
|
|
driver-opts: network=host
|
2020-08-17 16:18:15 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-09-02 04:07:11 -04:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-08-17 16:18:15 -04:00
|
|
|
allow: network.host,security.insecure
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-09-02 04:07:11 -04:00
|
|
|
secrets: |
|
|
|
|
GIT_AUTH_TOKEN=${{ github.token }}
|
2020-08-17 16:18:15 -04: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 }}
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 04:07:11 -04:00
|
|
|
path-context:
|
2020-08-15 18:36:41 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-22 21:31:38 -04:00
|
|
|
buildx-version:
|
|
|
|
- ""
|
|
|
|
- latest
|
2020-08-15 18:36:41 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Run local registry
|
|
|
|
run: |
|
|
|
|
docker run -d -p 5000:5000 registry:2
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-qemu-action@master
|
2020-08-15 18:36:41 -04:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-buildx-action@master
|
2020-08-16 20:33:38 -04:00
|
|
|
with:
|
2020-08-22 21:31:38 -04:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-09-03 12:17:27 -04:00
|
|
|
driver-opts: network=host
|
2020-08-16 20:37:37 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
2020-08-15 18:36:41 -04:00
|
|
|
-
|
|
|
|
name: Build and push
|
2020-08-22 22:07:29 -04:00
|
|
|
id: docker_build
|
2020-08-15 18:36:41 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
2020-09-02 04:07:11 -04:00
|
|
|
file: ./test/Dockerfile
|
2020-08-15 21:21:48 -04:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-08-16 20:33:38 -04:00
|
|
|
allow: network.host,security.insecure
|
|
|
|
push: true
|
2020-08-15 18:36:41 -04:00
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-08-16 20:42:46 -04:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
2020-08-22 22:06:55 -04:00
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-08-15 18:36:41 -04:00
|
|
|
-
|
|
|
|
name: Dump context
|
2020-08-16 11:18:08 -04:00
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 04:07:11 -04:00
|
|
|
multi:
|
2020-08-29 10:10:05 -04:00
|
|
|
runs-on: ubuntu-latest
|
2020-09-02 04:07:11 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildx-version:
|
|
|
|
- ""
|
|
|
|
- latest
|
|
|
|
dockerfile:
|
|
|
|
- multi
|
|
|
|
- multi-sudo
|
2020-08-29 10:10:05 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Run local registry
|
|
|
|
run: |
|
|
|
|
docker run -d -p 5000:5000 registry:2
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@master
|
|
|
|
with:
|
2020-09-02 04:07:11 -04:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-09-03 12:17:27 -04:00
|
|
|
driver-opts: network=host
|
2020-08-29 10:10:05 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
2020-09-02 04:07:11 -04:00
|
|
|
file: ./test/Dockerfile-${{ matrix.dockerfile }}
|
2020-08-29 10:10:05 -04:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
allow: network.host,security.insecure
|
|
|
|
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 }}
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-09-02 04:07:11 -04:00
|
|
|
github-cache:
|
2020-08-16 11:55:47 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Run local registry
|
|
|
|
run: |
|
|
|
|
docker run -d -p 5000:5000 registry:2
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-qemu-action@master
|
2020-08-16 11:55:47 -04:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2020-08-24 07:54:16 -04:00
|
|
|
uses: docker/setup-buildx-action@master
|
2020-08-16 13:22:14 -04:00
|
|
|
with:
|
2020-09-03 12:17:27 -04:00
|
|
|
driver-opts: network=host
|
2020-08-16 20:37:37 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
2020-09-02 04:07:11 -04:00
|
|
|
-
|
|
|
|
name: Cache Docker layers
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: cache
|
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildx-
|
2020-08-16 11:55:47 -04:00
|
|
|
-
|
|
|
|
name: Build and push
|
2020-08-22 22:07:29 -04:00
|
|
|
id: docker_build
|
2020-08-16 11:55:47 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-09-02 04:07:11 -04:00
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile-multi-golang
|
2020-08-16 11:55:47 -04:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-08-16 16:38:03 -04:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-08-16 20:33:38 -04:00
|
|
|
allow: network.host,security.insecure
|
|
|
|
push: true
|
2020-08-16 11:55:47 -04:00
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
2020-09-02 04:07:11 -04:00
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
2020-08-16 20:42:46 -04:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
2020-08-22 22:06:55 -04:00
|
|
|
-
|
|
|
|
name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
2020-09-02 04:07:11 -04:00
|
|
|
-
|
|
|
|
name: Cache hit
|
|
|
|
run: echo ${{ steps.cache.outputs.cache-hit }}
|
2020-08-16 11:55:47 -04:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|