mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-20 21:34:51 +08:00
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2 to 3. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
136 lines
3.7 KiB
YAML
136 lines
3.7 KiB
YAML
name: Docker image
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'master' ]
|
|
|
|
jobs:
|
|
Unit_Tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/unit-tests
|
|
|
|
Integration_Tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/integration-tests
|
|
with:
|
|
XOAUTH2_RELAYHOST_USERNAME: ${{ secrets.XOAUTH2_RELAYHOST_USERNAME }}
|
|
XOAUTH2_CLIENT_ID: ${{ secrets.XOAUTH2_CLIENT_ID }}
|
|
XOAUTH2_SECRET: ${{ secrets.XOAUTH2_SECRET }}
|
|
XOAUTH2_INITIAL_REFRESH_TOKEN: ${{ secrets.XOAUTH2_INITIAL_REFRESH_TOKEN }}
|
|
|
|
Helm_chart_Tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/helm-chart-tests
|
|
|
|
Build_Alpine:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- Unit_Tests
|
|
- Integration_Tests
|
|
- Helm_chart_Tests
|
|
steps:
|
|
# Checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
# Buildkit setup
|
|
- uses: ./.github/actions/buildx-setup
|
|
|
|
# Docker hub login
|
|
- uses: ./.github/actions/docker-hub-login
|
|
with:
|
|
DOCKER_ACCESS_TOKEN: '${{ secrets.DOCKER_ACCESS_TOKEN }}'
|
|
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
#key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-
|
|
|
|
- name: Fix issue with building Alpine # See https://gitlab.alpinelinux.org/alpine/aports/-/issues/12406
|
|
run: |
|
|
update-binfmts --enable
|
|
|
|
- name: Build and push Alpine
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: |
|
|
boky/postfix:latest
|
|
boky/postfix:latest-alpine
|
|
# linux/s390x: "rsyslog (no such package)"
|
|
platforms: "linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le"
|
|
cache-from: type=local,src=/tmp/.buildx-cache/alpine
|
|
cache-to: type=local,dest=/tmp/.buildx-cache-new/alpine
|
|
build-args: |
|
|
BASE_IMAGE=alpine:latest
|
|
|
|
- name: Move cache
|
|
run: |
|
|
rm -rf /tmp/.buildx-cache
|
|
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
|
|
|
Build_Ubuntu:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- Unit_Tests
|
|
- Integration_Tests
|
|
- Helm_chart_Tests
|
|
steps:
|
|
# Checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
# Buildkit setup
|
|
- uses: ./.github/actions/buildx-setup
|
|
|
|
# Docker hub login
|
|
- uses: ./.github/actions/docker-hub-login
|
|
with:
|
|
DOCKER_ACCESS_TOKEN: '${{ secrets.DOCKER_ACCESS_TOKEN }}'
|
|
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
#key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-
|
|
|
|
- name: Build and push Ubuntu
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: boky/postfix:latest-ubuntu
|
|
platforms: "linux/arm/v7,linux/amd64,linux/arm64,linux/ppc64le,linux/s390x"
|
|
cache-from: type=local,src=/tmp/.buildx-cache/ubuntu
|
|
cache-to: type=local,dest=/tmp/.buildx-cache-new/ubuntu
|
|
build-args: |
|
|
BASE_IMAGE=ubuntu:impish
|
|
|
|
- name: Move cache
|
|
run: |
|
|
rm -rf /tmp/.buildx-cache
|
|
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
|
|