Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumevernieres committed Jul 9, 2024
1 parent ef50da4 commit f96ebd9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions test/gw-ci/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ function(add_cycling_tests pslot YAML_PATH HOMEgfs RUNTESTS PROJECT_SOURCE_DIR T
# 1/2 cycle enkfgdasfcst
message(STATUS "preparing 1/2 cycle ensemble forecast for ${pslot} ctest")
foreach(mem RANGE ${NMEM})
add_test(NAME ${pslot}_ensemble_${HALF_CYCLE}_${mem}
set(test_name "${pslot}_enkfgdasfcst_00${mem}_${HALF_CYCLE}")
add_test(NAME ${test_name}
COMMAND /bin/bash -c "${PROJECT_SOURCE_DIR}/test/gw-ci/run_exp.sh ${pslot} enkfgdasfcst_00${mem} ${HALF_CYCLE}"
WORKING_DIRECTORY ${RUNTESTS})
set_tests_properties(${pslot}_enkfgdasfcst_${mem}_${HALF_CYCLE} PROPERTIES LABELS "gw-ci")
set_tests_properties(${test_name} PROPERTIES LABELS "gw-ci")
endforeach()

# Select the list of tasks to run for the full cycle
Expand Down Expand Up @@ -74,7 +75,18 @@ add_cycling_tests(${pslot} ${YAML_PATH} ${HOMEgfs} ${RUNTESTS} ${PROJECT_SOURCE_
# ---------------
set(pslot "Atm-hyb-C96C48")
set(YAML_PATH ${HOMEgfs}/ci/cases/pr/C96C48_ufs_hybatmDA.yaml)
set(TASK_LIST) # empty list for now
set(TASK_LIST
"gdasprep"
"gdasprepatmiodaobs"
"gdasatmanlinit"
"gdasatmanlvar"
"gdasatmanlfv3inc"
"gdasatmanlfinal"
"enkfgdasatmensanlinit"
"enkfgdasatmensanlletkf"
"enkfgdasatmensanlfv3inc"
"enkfgdasatmensanlfinal"
) # empty list for now
add_cycling_tests(${pslot} ${YAML_PATH} ${HOMEgfs} ${RUNTESTS} ${PROJECT_SOURCE_DIR} "${TASK_LIST}" 2)

# GFSv17, 3DVAR prototype
Expand Down

0 comments on commit f96ebd9

Please sign in to comment.