Skip to content

Add more archs

Add more archs #31

Workflow file for this run

name: Build docker image
permissions:
contents: read
on: [push]
jobs:
build-image:
runs-on: ubuntu-latest
name: Build and test docker image (${{ matrix.platform }})
strategy:
fail-fast: false
matrix:
platform: ["linux/386", "linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64/v8", "linux/ppc64le", "linux/s390x"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build docker image
run: make docker-build
env:
DOCKER_BUILDKIT: 1
PLATFORM: "${{ matrix.platform }}"
- name: Test docker image
run: make test-certificates test
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
PLATFORM: "${{ matrix.platform }}"