Skip to content

Commit

Permalink
HDF5 problem with github actions fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhueper committed Jan 10, 2025
1 parent 2fb4f0a commit 6effd94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -885,14 +885,14 @@ jobs:
run: |
source /opt/intel/oneapi/setvars.sh || true
make MODE=${{matrix.mode}} COMPILER=${{matrix.compiler}} COMM=${{matrix.comm}} ENABLE_THREADS=${{matrix.enable_threads}} WITH_METIS=YES
if: '!cancelled()'
if: ('!cancelled()' && matrix.compiler == 'gfortran')

- name: Run VirtualSurfaces_acoustics_pAdaptationRL
working-directory: ./Solver/test/NavierStokes/VirtualSurfaces_acoustics_pAdaptationRL
run: |
source /opt/intel/oneapi/setvars.sh || true
mpiexec -n 64 ./horses3d.ns virtualSurfaces_acoustics_pAdaptationRL.control
if: '!cancelled()'
if: ('!cancelled()' && matrix.compiler == 'gfortran')

########################################################################
####### PARTICLES ########
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/CI_sequential 2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ jobs:
#
# 18) Manufactured Solution for Spalart-Almaras
# ----------------------------
# This test case only runs with hdf5 as we do not support hdf5 with ifort in the github actions
# This test case only runs with gfortran as we do not support hdf5 with ifort in the github actions

- name: Build ManufacturedSolutionsSA
working-directory: ./Solver/test/NavierStokes/ManufacturedSolutionsSA/SETUP
Expand Down Expand Up @@ -734,18 +734,19 @@ jobs:
#
# 30) Virtual surfaces with acoustics and Reinforcement Learning p-adaptation
# --------------------------------------------
# This test case only runs with gfortran as we do not support hdf5 with ifort in the github actions

- name: Build VirtualSurfaces_acoustics_pAdaptationRL
working-directory: ./Solver/test/NavierStokes/VirtualSurfaces_acoustics_pAdaptationRL/SETUP
run: |
source /opt/intel/oneapi/setvars.sh || true
make MODE=${{matrix.mode}} COMPILER=${{matrix.compiler}} COMM=${{matrix.comm}} ENABLE_THREADS=${{matrix.enable_threads}} WITH_MKL=${{matrix.mkl}} WITH_HDF5=${{matrix.hdf5}}
if: '!cancelled()'
if: ('!cancelled()' && matrix.compiler == 'gfortran')

- name: Run VirtualSurfaces_acoustics_pAdaptationRL
working-directory: ./Solver/test/NavierStokes/VirtualSurfaces_acoustics_pAdaptationRL
run: |
source /opt/intel/oneapi/setvars.sh || true
./horses3d.ns virtualSurfaces_acoustics_pAdaptationRL.control
if: '!cancelled()'
if: ('!cancelled()' && matrix.compiler == 'gfortran')

0 comments on commit 6effd94

Please sign in to comment.