diff --git a/Externals.cfg b/Externals.cfg index 5ec11768f5..9a5f546aca 100644 --- a/Externals.cfg +++ b/Externals.cfg @@ -29,7 +29,7 @@ protocol = git repo_url = https://github.com/NOAA-EMC/EMC_post # Specify either a branch name or a hash but not both. #branch = develop -hash = 9fa1e088 +hash = a49af05 local_path = src/EMC_post required = True diff --git a/docs/UsersGuide/source/ConfigWorkflow.rst b/docs/UsersGuide/source/ConfigWorkflow.rst index 9c85d7be1d..36f06dbe68 100644 --- a/docs/UsersGuide/source/ConfigWorkflow.rst +++ b/docs/UsersGuide/source/ConfigWorkflow.rst @@ -188,8 +188,8 @@ File Name Parameters ``WFLOW_LAUNCH_LOG_FN``: (Default: “log.launch_FV3LAM_wflow”) Name of the log file that contains the output from successive calls to the workflow launch script (``WFLOW_LAUNCH_SCRIPT_FN``). -Foreast Parameters -================== +Forecast Parameters +=================== ``DATE_FIRST_CYCL``: (Default: “YYYYMMDD”) Starting date of the first forecast in the set of forecasts to run. Format is "YYYYMMDD". Note that this does not include the hour-of-day. diff --git a/env/wflow_hera.env b/env/wflow_hera.env index 5699c9c696..f526c434f5 100644 --- a/env/wflow_hera.env +++ b/env/wflow_hera.env @@ -1,5 +1,7 @@ # Python environment for workflow on Hera +module load rocoto + module use -a /contrib/miniconda3/modulefiles module load miniconda3 conda activate regional_workflow diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1adffe5eed..84ed6499fa 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,6 +5,7 @@ ExternalProject_Add(UFS_UTILS SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/UFS_UTILS INSTALL_DIR ${CMAKE_INSTALL_PREFIX} CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}" + BUILD_ALWAYS TRUE ) if(NOT CCPP_SUITES) @@ -57,6 +58,7 @@ ExternalProject_Add(ufs-weather-model INSTALL_DIR ${CMAKE_INSTALL_PREFIX} CMAKE_ARGS ${UFS_WEATHER_MODEL_ARGS} INSTALL_COMMAND mkdir -p ${CMAKE_INSTALL_PREFIX}/bin && cp ${CMAKE_CURRENT_BINARY_DIR}/ufs-weather-model/src/ufs-weather-model-build/ufs_model ${CMAKE_INSTALL_PREFIX}/bin/ + BUILD_ALWAYS TRUE ) ExternalProject_Add(EMC_post @@ -64,4 +66,5 @@ ExternalProject_Add(EMC_post SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/EMC_post INSTALL_DIR ${CMAKE_INSTALL_PREFIX} CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}" + BUILD_ALWAYS TRUE )