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-08-17 16:18:15 -04:00
|
|
|
single:
|
|
|
|
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
|
|
|
|
uses: ./setup-qemu/ # change to docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: ./setup-buildx/ # change to docker/setup-buildx-action@master
|
|
|
|
with:
|
2020-08-22 21:31:38 -04:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-08-17 16:18:15 -04:00
|
|
|
driver-opt: network=host
|
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
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
|
|
|
|
|
|
|
|
multi:
|
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
|
|
|
dockerfile:
|
|
|
|
- multi
|
|
|
|
- multi-sudo
|
|
|
|
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: ./setup-qemu/ # change to docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: ./setup-buildx/ # change to 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-08-16 20:33:38 -04:00
|
|
|
driver-opt: 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
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile-${{ matrix.dockerfile }}
|
2020-08-15 21:21:48 -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-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-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-08-16 11:55:47 -04:00
|
|
|
git-context:
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-22 21:31:38 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildx-version:
|
|
|
|
#- "" # GIT_AUTH_TOKEN not available in the current version on the GitHub Runner
|
|
|
|
- latest
|
2020-08-16 11:55:47 -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: ./setup-qemu/ # change to docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: ./setup-buildx/ # change to docker/setup-buildx-action@master
|
2020-08-16 13:22:14 -04:00
|
|
|
with:
|
2020-08-22 21:31:38 -04:00
|
|
|
version: ${{ matrix.buildx-version }}
|
2020-08-16 20:33:38 -04:00
|
|
|
driver-opt: network=host
|
2020-08-16 20:37:37 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
2020-08-16 11:55:47 -04:00
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
uses: ./
|
2020-08-16 13:13:19 -04:00
|
|
|
env:
|
2020-08-16 13:22:14 -04:00
|
|
|
GIT_AUTH_TOKEN: ${{ github.token }}
|
2020-08-16 11:55:47 -04:00
|
|
|
with:
|
2020-08-17 11:31:15 -04:00
|
|
|
context: "${{ github.repositoryUrl }}#${{ github.ref }}"
|
2020-08-16 11:58:09 -04:00
|
|
|
file: ./test/Dockerfile
|
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-08-16 20:42:46 -04:00
|
|
|
-
|
|
|
|
name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect localhost:5000/name/app:1.0.0
|
2020-08-16 11:55:47 -04:00
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|