Fix arg name format #44
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 & Test | |
on: | |
push: | |
pull_request_target: | |
types: | |
- opened | |
- synchronized | |
- edited | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ompi_version: | |
- main | |
- 5.0.5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to GHCR container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Bake the bootstrap docker image | |
uses: docker/bake-action@v5 | |
with: | |
files: .github/docker-compose.yml | |
targets: bootstrap | |
workdir: . | |
set: | | |
*.output=type=docker,name=bootstrap | |
*.cache-from=type=gha,scope=bootstrap/${{ matrix.ompi_version }} | |
*.cache-to=type=gha,mode=max,scope=bootstrap/${{ matrix.ompi_version }} | |
*.args.OMPI_VERSION=${{ matrix.ompi_version }} | |
- name: Bootstrap the environment Dockerfile | |
run: docker run -v ${GITHUB_WORKSPACE}/.github:/configs bootstrap | |
- name: Build the environment | |
uses: docker/bake-action@v5 | |
with: | |
files: .github/docker-compose.yml | |
targets: env | |
workdir: . | |
pull: true | |
set: | | |
*.cache-from=type=gha,scope=env/${{ matrix.ompi_version }} | |
*.cache-to=type=gha,mode=max,scope=env/${{ matrix.ompi_version }} | |
env.tags=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }} | |
env.output=type=registry,name=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }} | |
- name: Build Fenix | |
uses: docker/bake-action@v5 | |
with: | |
source: . | |
files: .github/docker-compose.yml | |
targets: fenix | |
workdir: . | |
set: | | |
*.output=type=docker,name=fenix | |
*.args.OMPI_VERSION=${{ matrix.ompi_version }} | |
- name: Test Fenix | |
run: docker run fenix |