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:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
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:
|
|
|
|
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
|
|
|
|
-
|
|
|
|
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
|
|
|
|
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:
|
|
|
|
version: latest
|
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 }}
|
|
|
|
GIT_REF: ${{ github.ref }}
|
2020-08-16 11:55:47 -04:00
|
|
|
with:
|
2020-08-16 13:13:19 -04:00
|
|
|
context: ${{ github.repositoryUrl }}
|
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
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
|
|
|
|
2020-08-16 11:18:08 -04:00
|
|
|
bake:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- default
|
|
|
|
- release
|
|
|
|
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:
|
|
|
|
driver-opt: network=host
|
2020-08-16 20:37:37 -04:00
|
|
|
buildkitd-flags: --allow-insecure-entitlement security.insecure
|
2020-08-16 11:18:08 -04:00
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
bake: true
|
2020-08-16 20:33:38 -04:00
|
|
|
push: false # set to true when https://github.com/docker/buildx/issues/179 is fixed
|
2020-08-16 11:18:08 -04:00
|
|
|
bake-files: |
|
|
|
|
./test/config.hcl
|
|
|
|
bake-targets: |
|
|
|
|
${{ matrix.target }}
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
2020-08-15 18:36:41 -04:00
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|
2020-08-16 16:31:37 -04:00
|
|
|
|
|
|
|
github-cache:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
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 17:15:54 -04:00
|
|
|
name: Build with cache
|
2020-08-16 16:31:37 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
context: ./test
|
|
|
|
file: ./test/Dockerfile-multi-golang
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2020-08-16 16:38:03 -04:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-08-16 16:31:37 -04:00
|
|
|
cache-github: true
|
|
|
|
tags: |
|
|
|
|
localhost:5000/name/app:latest
|
|
|
|
localhost:5000/name/app:1.0.0
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
if: always()
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|