FRW-8773 Added PHP Unit 11 support. #1519
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: Docker image build CI - build docker image. | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- image: 'infrastructure/sdk.Dockerfile' | |
tags: [ 'php-sdk:latest' ] | |
platforms: [ "linux/amd64", "linux/arm64" ] | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: false | |
file: infrastructure/sdk.Dockerfile | |
tags: ${{ join(matrix.tags) }} | |
platforms: ${{ join(matrix.platforms) }} |