Vh 1216 fix spat plugin segfault simulation #141
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: Pull Request Workflow | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
docker-image-builds: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: usdotfhwaops/php | |
tags: | | |
type=schedule | |
type=ref,event=branch | |
type=ref,event=tag | |
type=ref,event=pr | |
# set latest tag for default branch | |
type=raw,value=latest,enable={{is_default_branch}} | |
- name: V2X-Hub Docker build | |
uses: docker/build-push-action@v5 | |
with: | |
file: Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
BUILD_ARCHITECTURE=${{ matrix.architecture }} | |
UBUNTU_CODENAME=${{ matrix.ubuntu-codename }} | |
- name: PHP Docker build | |
uses: docker/build-push-action@v5 | |
with: | |
file: docker/Dockerfile-php | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
BUILD_ARCHITECTURE=${{ matrix.architecture }} | |
UBUNTU_CODENAME=${{ matrix.ubuntu-codename }} | |
- name: Port Drayage Docker build | |
uses: docker/build-push-action@v5 | |
with: | |
context: tools/port-drayage-webservice | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
BUILD_ARCHITECTURE=${{ matrix.architecture }} | |
UBUNTU_CODENAME=${{ matrix.ubuntu-codename }} |