diff --git a/.github/workflows/CI_parallel.yml b/.github/workflows/CI_parallel.yml index 3aef5a5fc..c2053526a 100644 --- a/.github/workflows/CI_parallel.yml +++ b/.github/workflows/CI_parallel.yml @@ -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 ######## diff --git a/.github/workflows/CI_sequential 2.yml b/.github/workflows/CI_sequential 2.yml index 673c46af0..b86e57348 100644 --- a/.github/workflows/CI_sequential 2.yml +++ b/.github/workflows/CI_sequential 2.yml @@ -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 @@ -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')