Revert and try to use another command format #44
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: | |
branches: | |
- "*" | |
tags-ignore: | |
- "*" | |
jobs: | |
build-image: | |
name: Build the image | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
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 build-alpine | |
env: | |
DOCKER_BUILDKIT: 1 | |
PLATFORM: ${{ matrix.platform }} | |
- name: Test docker image | |
if: ${{ matrix.platform == 'linux/amd64' }} | |
run: make test-alpine |