Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build_gcm:
strategy:
matrix:
compiler: [ifort, gfortran-14, gfortran-15, ifx]
compiler: [ifort, gfortran-15, gfortran-16, ifx]
build-type: [Debug]
fail-fast: false
uses: GEOS-ESM/CI-workflows/.github/workflows/geosgcm_build_tests.yml@project/geosgcm
Expand Down
5 changes: 4 additions & 1 deletion regression/run_case.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ function(run_case case_name regression_data_dir)
if (NOT EXISTS ${checkpoints_dir})
message(WARNING "Baseline directory [${checkpoints_dir}] not found. Skipping comparison.")
elseif(FORTRAN_COMPILER_ID STREQUAL "IntelLLVM") # only compare against IntelLLVM baselines
compare_results(${checkpoints_dir} ${expdir}/checkpoints/last NANS_ARE_EQUAL)
compare_results(
${checkpoints_dir} ${expdir}/checkpoints/last
NANS_ARE_EQUAL
EXCLUDE_VARS lons lats corner_lons corner_lats)
endif()

file(REMOVE_RECURSE ${expdir})
Expand Down
Loading