Skip to content

Commit

Permalink
one arg per line
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnaf-tahmid-chowdhury committed Dec 21, 2023
1 parent fe7acca commit d2aaca9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/actions/upstream-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,10 @@ runs:
parallel: true
tag-latest-on-default: false
dockerfile: CI/Dockerfile
build-args: UBUNTU_VERSION=${{ inputs.ubuntu_version }}, COMPILER=${{ inputs.compiler }}, HDF5_VERSION=${{ inputs.hdf5_version }}, MOAB_VERSION=${{ inputs.moab_version }}, GEANT4_VERSION=${{ inputs.geant4_version }}, DOUBLE_DOWN_VERSION=${{ inputs.double_down_version }}
build-args: >
UBUNTU_VERSION=${{ inputs.ubuntu_version }},
COMPILER=${{ inputs.compiler }},
HDF5_VERSION=${{ inputs.hdf5_version }},
MOAB_VERSION=${{ inputs.moab_version }},
GEANT4_VERSION=${{ inputs.geant4_version }},
DOUBLE_DOWN_VERSION=${{ inputs.double_down_version }}
8 changes: 7 additions & 1 deletion .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ jobs:
parallel: true
tag-latest-on-default: ${{ env.tag-latest-on-default }}
dockerfile: CI/Dockerfile
build-args: UBUNTU_VERSION=${{ matrix.ubuntu_version }}, COMPILER=${{ matrix.compiler }}, HDF5_VERSION=${{ matrix.hdf5_version }}, MOAB_VERSION=${{ matrix.moab_version }}, GEANT4_VERSION=${{ matrix.geant4_version }}, DOUBLE_DOWN_VERSION=${{ matrix.double_down_version}}
build-args: >
UBUNTU_VERSION=${{ matrix.ubuntu_version }},
COMPILER=${{ matrix.compiler }},
HDF5_VERSION=${{ matrix.hdf5_version }},
MOAB_VERSION=${{ matrix.moab_version }},
GEANT4_VERSION=${{ matrix.geant4_version }},
DOUBLE_DOWN_VERSION=${{ matrix.double_down_version}}
push_stable_ci_img:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/linux_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,17 @@ jobs:
]

container:
image: ghcr.io/svalinn/dagmc-ci-ubuntu-${{ matrix.ubuntu_version }}-${{ matrix.compiler}}-hdf5_${{ matrix.hdf5_version}}-moab_${{ matrix.moab_version }}${{ matrix.geant4_version != 'OFF' && '-geant4_' || '' }}${{ matrix.geant4_version != 'OFF' && matrix.geant4_version || '' }}${{ matrix.double_down_version != 'OFF' && '-double_down_' || '' }}${{ matrix.double_down_version != 'OFF' && matrix.double_down_version || '' }}/moab:latest
image: >
ghcr.io/svalinn/dagmc-ci
-ubuntu-${{ matrix.ubuntu_version }}
-${{ matrix.compiler}}
-hdf5_${{ matrix.hdf5_version}}
-moab_${{ matrix.moab_version }}
${{ matrix.geant4_version != 'OFF' && '-geant4_' || '' }}
${{ matrix.geant4_version != 'OFF' && matrix.geant4_version || '' }}
${{ matrix.double_down_version != 'OFF' && '-double_down_' || '' }}
${{ matrix.double_down_version != 'OFF' && matrix.double_down_version || '' }}
/moab:latest
steps:
- name: Checkout repository
Expand Down

0 comments on commit d2aaca9

Please sign in to comment.