2021-01-16 09:16:05 +00:00
|
|
|
name: "Build, Test & Deploy"
|
|
|
|
|
|
|
|
on:
|
2021-02-18 21:56:13 +00:00
|
|
|
workflow_dispatch:
|
2021-01-16 09:16:05 +00:00
|
|
|
push:
|
2021-01-24 22:18:37 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2021-09-28 10:37:54 +00:00
|
|
|
paths:
|
2021-02-11 08:48:45 +00:00
|
|
|
- 'target/**'
|
|
|
|
- '.dockerignore'
|
|
|
|
- '.gitmodules'
|
|
|
|
- 'Dockerfile'
|
|
|
|
- 'setup.sh'
|
2021-01-24 22:18:37 +00:00
|
|
|
tags:
|
|
|
|
- '*.*.*'
|
2021-01-16 09:16:05 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-01-17 16:41:47 +00:00
|
|
|
build-and-test-image:
|
2021-01-16 14:34:31 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-01-16 09:16:05 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2021-05-12 09:51:46 +00:00
|
|
|
uses: actions/checkout@v2.3.4
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Set up Docker Buildx
|
2021-09-05 09:22:02 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.6.0
|
2021-01-16 09:16:05 +00:00
|
|
|
id: buildx
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Cache Docker layers
|
2021-11-29 12:16:43 +00:00
|
|
|
uses: actions/cache@v2.1.7
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildx-
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Build image locally
|
2021-08-23 14:02:55 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
build-args: |
|
|
|
|
VCS_REF=${{ github.sha }}
|
|
|
|
VCS_VER=${{ github.ref }}
|
2021-01-17 16:41:47 +00:00
|
|
|
platforms: linux/amd64
|
|
|
|
load: true
|
|
|
|
tags: mailserver-testing:ci
|
2021-01-16 09:16:05 +00:00
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-17 16:41:47 +00:00
|
|
|
- name: Run test suite
|
|
|
|
run: >
|
|
|
|
NAME=mailserver-testing:ci
|
|
|
|
bash -c 'make generate-accounts tests'
|
2021-01-16 09:16:05 +00:00
|
|
|
env:
|
|
|
|
CI: true
|
|
|
|
|
2021-01-17 16:41:47 +00:00
|
|
|
build-multiarch-and-publish:
|
|
|
|
needs: build-and-test-image
|
2021-01-16 14:34:31 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-01-16 09:16:05 +00:00
|
|
|
steps:
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Checkout
|
2021-05-12 09:51:46 +00:00
|
|
|
uses: actions/checkout@v2.3.4
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-17 16:41:47 +00:00
|
|
|
- name: Prepare tags
|
2021-01-16 09:16:05 +00:00
|
|
|
id: prep
|
2021-12-11 17:23:44 +00:00
|
|
|
uses: docker/metadata-action@v3.6.2
|
2021-01-24 22:18:37 +00:00
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
${{ secrets.DOCKER_REPOSITORY }}
|
|
|
|
${{ secrets.GHCR_REPOSITORY }}
|
2021-04-05 10:20:23 +00:00
|
|
|
tags: |
|
|
|
|
type=edge,branch=master
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}.{{patch}}
|
|
|
|
flavor: |
|
|
|
|
latest=auto
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Set up QEMU
|
2021-05-31 10:40:05 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Set up Docker Buildx
|
2021-09-05 09:22:02 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.6.0
|
2021-01-16 09:16:05 +00:00
|
|
|
id: buildx
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Cache Docker layers
|
2021-11-29 12:16:43 +00:00
|
|
|
uses: actions/cache@v2.1.7
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildx-
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
- name: Login to DockerHub
|
2021-12-27 20:27:02 +00:00
|
|
|
uses: docker/login-action@v1.12.0
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-01-24 22:18:37 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
2021-12-27 20:27:02 +00:00
|
|
|
uses: docker/login-action@v1.12.0
|
2021-01-24 22:18:37 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2021-05-12 10:31:37 +00:00
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2021-09-28 10:37:54 +00:00
|
|
|
|
2021-05-17 07:45:27 +00:00
|
|
|
- name: Build images locally
|
2021-08-23 14:02:55 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-01-16 09:16:05 +00:00
|
|
|
with:
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
build-args: |
|
|
|
|
VCS_REF=${{ github.sha }}
|
|
|
|
VCS_VER=${{ github.ref }}
|
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.prep.outputs.tags }}
|
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|