Skip to content

Commit

Permalink
Merge pull request #54 from Chaste/portability-06
Browse files Browse the repository at this point in the history
portability-06
  • Loading branch information
kwabenantim authored Aug 14, 2023
2 parents b663eea + 9cbc922 commit 6d164fc
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/docker-portability-06.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: docker-portability-06

on:
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
include:
- tags: |
chaste/runner:jammy.portability-06
build-args: |
BASE=jammy
XSD=4.0.0
XERCESC=3.2.4
SUNDIALS=6.0.0
BOOST=1.74.0
VTK=9.2.6
PETSC=3.15.5
HDF5=1.10.8
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and export to Docker
uses: docker/build-push-action@v4
with:
context: .
pull: true
load: true
tags: ${{ matrix.tags }}
build-args: ${{ matrix.build-args }}

- name: Test image
run: |
tags=( ${{ matrix.tags }} )
for tag in "${tags[@]}"; do
docker run --rm --entrypoint /bin/bash ${tag}
done
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
pull: true
push: true
tags: ${{ matrix.tags }}
build-args: ${{ matrix.build-args }}

0 comments on commit 6d164fc

Please sign in to comment.