Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encapsulate the marine 3dvar and hyb ctests under different cmake conditionals #1405

Merged
merged 1 commit into from
Dec 6, 2024
Merged
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
11 changes: 6 additions & 5 deletions test/gw-ci/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ if (WORKFLOW_TESTS)
option(TEST_GSI "Enable the GFSv17 GSI tests" ON)
option(TEST_GFS18 "Enable the GFSv18 Atmos JEDI tests" ON)
option(TEST_AERO_LAND "Enable the GFSv17 Aero-Land JEDI tests" ON)
option(TEST_MARINE "Enable the GFSv17 Marine JEDI tests" ON)
option(TEST_MARINE_VAR "Enable the GFSv17 Marine JEDI 3D VAR FGAT tests" ON)
option(TEST_MARINE_HYB "Enable the GFSv17 Marine JEDI 3d HYB VAR tests" OFF)
option(TEST_GFS17 "Enable the GFSv17 WCDA tests" OFF)

# Setup the environement
Expand Down Expand Up @@ -354,7 +355,7 @@ if (WORKFLOW_TESTS)
add_cycling_tests(${pslot} ${YAML_PATH} ${HOMEgfs} ${WORKING_DIRECTORY} ${PROJECT_SOURCE_DIR} "${HALF_CYCLE_TASKS}" "${FULL_CYCLE_TASKS}")
endif() # TEST_AERO_LAND

if(${TEST_MARINE})
if(${TEST_MARINE_VAR})
# GSI Atm DA C48, JEDI Marine DA 500
# ----------------------------------
set(pslot "C48mx500_3DVarAOWCDA")
Expand All @@ -376,11 +377,11 @@ if (WORKFLOW_TESTS)
#"gdas_fcst"
)
add_cycling_tests(${pslot} ${YAML_PATH} ${HOMEgfs} ${WORKING_DIRECTORY} ${PROJECT_SOURCE_DIR} "${HALF_CYCLE_TASKS}" "${FULL_CYCLE_TASKS}")
endif() # TEST_MARINE_VAR


if(${TEST_MARINE_HYB})
# WCDA, low-res, ensemble da
# -------------

set(pslot "C48mx500_hybAOWCDA")
set(letkf TRUE)
set(YAML_PATH ${HOMEgfs}/ci/cases/pr/${pslot}.yaml)
Expand All @@ -400,7 +401,7 @@ if (WORKFLOW_TESTS)
)
add_cycling_tests(${pslot} ${YAML_PATH} ${HOMEgfs} ${WORKING_DIRECTORY} ${PROJECT_SOURCE_DIR} "${HALF_CYCLE_TASKS}" "${FULL_CYCLE_TASKS}")
set(letkf FALSE)
endif() # TEST_MARINE
endif() # TEST_MARINE_HYB

# GFSv17, 3DVAR prototype
# -----------------------
Expand Down