Update archs #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
# "linux/s390x" -> because of horust not built for s390x | |
platform: ["linux/386", "linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64/v8", "linux/ppc64le"] | |
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 }}" |