Streamline and simplify CI building #232
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 & Publish docker image for DAGMC-CI & Build/Test DAGMC | |
on: | |
# allows us to run workflows manually | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build-dependency-img: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ubuntu_versions : [ | |
20.04, | |
22.04, | |
] | |
compiler : [ | |
gcc, | |
clang, | |
] | |
hdf5_versions : [ | |
1.10.4, | |
] | |
moab_versions : [ | |
5.3.0, | |
] | |
name: Installing Dependencies | |
steps: | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Installing Dependencies in Docker image & Testing DAGMC | |
id: build | |
uses: firehed/multistage-docker-build-action@v1 | |
with: | |
repository: ghcr.io/${{ github.repository_owner }}/dagmc-ci-ubuntu-${{ matrix.ubuntu_versions }}-${{ matrix.compiler}}-ext-hdf5_${{ matrix.hdf5_versions}}-moab_${{ matrix.moab_versions }} | |
stages: base, external_deps, hdf5, moab, dagmc | |
server-stage: dagmc_test | |
quiet: false | |
parallel: true | |
tag-latest-on-default: false | |
dockerfile: CI/Dockerfile | |
build-args: COMPILER=${{ matrix.compiler }}, UBUNTU_VERSION=${{ matrix.ubuntu_versions }}, HDF5=${{ matrix.hdf5_versions }}, MOAB=${{ matrix.moab_versions }} | |
push_stable_ci_img: | |
needs: [build-dependency-img] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ubuntu_versions : [ | |
20.04, | |
22.04, | |
] | |
compiler : [ | |
gcc, | |
clang, | |
] | |
hdf5_versions : [ | |
1.10.4, | |
] | |
moab_versions : [ | |
5.3.0, | |
] | |
name: Pushing final images | |
steps: | |
- name: Log in to the Container registry | |
if: ${{ github.repository_owner == 'svalinn' }} | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push Image as stable img | |
if: ${{ github.repository_owner == 'svalinn' }} | |
uses: akhilerm/[email protected] | |
with: | |
src: ghcr.io/${{ github.repository_owner }}/dagmc-ci-ubuntu-${{ matrix.ubuntu_versions }}-${{ matrix.compiler }}-ext-hdf5_${{ matrix.hdf5_versions }}-moab_${{ matrix.moab_versions }}/dagmc:refs_heads_${{ github.ref_name }}-bk0 | |
dst: ghcr.io/${{ github.repository_owner }}/dagmc-ci-ubuntu-${{ matrix.ubuntu_versions }}-${{ matrix.compiler}}-ext-hdf5_${{ matrix.hdf5_versions }}-moab_${{ matrix.moab_versions }}:stable | |
- name: Push Image as latest img | |
if: ${{ github.repository_owner == 'svalinn' }} | |
uses: akhilerm/[email protected] | |
with: | |
src: ghcr.io/${{ github.repository_owner }}/dagmc-ci-ubuntu-${{ matrix.ubuntu_versions }}-${{ matrix.compiler }}-ext-hdf5_${{ matrix.hdf5_versions }}-moab_${{ matrix.moab_versions }}/dagmc:refs_heads_${{ github.ref_name }}-bk0 | |
dst: ghcr.io/${{ github.repository_owner }}/dagmc-ci-ubuntu-${{ matrix.ubuntu_versions }}-${{ matrix.compiler}}-ext-hdf5_${{ matrix.hdf5_versions}}-moab_${{ matrix.moab_versions }}:latest |