From 1b6ec5facd7d9fdb4bc6f2c85b88f08d9613e414 Mon Sep 17 00:00:00 2001 From: peverwhee Date: Sun, 5 Jan 2025 23:57:55 -0700 Subject: [PATCH 1/8] add new err test; update git-fleximod; update externals --- .gitmodules | 16 ++++++++-------- .lib/git-fleximod/git_fleximod/cli.py | 2 +- .lib/git-fleximod/git_fleximod/git_fleximod.py | 3 ++- .lib/git-fleximod/pyproject.toml | 2 +- .lib/git-fleximod/tbump.toml | 2 +- ccs_config | 2 +- cime_config/testdefs/testlist_cam.xml | 9 +++++++++ components/cism | 2 +- components/cmeps | 2 +- components/mizuRoute | 2 +- components/mosart | 2 +- components/rtm | 2 +- share | 2 +- 13 files changed, 29 insertions(+), 19 deletions(-) diff --git a/.gitmodules b/.gitmodules index 1809a94e55..152d3dbb91 100644 --- a/.gitmodules +++ b/.gitmodules @@ -116,35 +116,35 @@ [submodule "cism"] path = components/cism url = https://github.com/ESCOMP/CISM-wrapper -fxtag = cismwrap_2_2_002 +fxtag = cismwrap_2_2_005 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CISM-wrapper [submodule "rtm"] path = components/rtm url = https://github.com/ESCOMP/RTM -fxtag = rtm1_0_80 +fxtag = rtm1_0_84 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/RTM [submodule "mosart"] path = components/mosart url = https://github.com/ESCOMP/MOSART -fxtag = mosart1.1.02 +fxtag = mosart1.1.06 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/MOSART [submodule "mizuRoute"] path = components/mizuRoute url = https://github.com/ESCOMP/mizuRoute -fxtag = cesm-coupling.n02_v2.1.3 +fxtag = cesm-coupling.n03_v2.2.0 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/mizuRoute [submodule "ccs_config"] path = ccs_config url = https://github.com/ESMCI/ccs_config_cesm.git -fxtag = ccs_config_cesm1.0.8 +fxtag = ccs_config_cesm1.0.15 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git @@ -158,7 +158,7 @@ fxDONOTUSEurl = https://github.com/ESMCI/cime [submodule "cmeps"] path = components/cmeps url = https://github.com/ESCOMP/CMEPS.git -fxtag = cmeps1.0.32 +fxtag = cmeps1.0.33 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git @@ -172,7 +172,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS.git [submodule "share"] path = share url = https://github.com/ESCOMP/CESM_share -fxtag = share1.1.6 +fxtag = share1.1.7 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share @@ -186,7 +186,7 @@ fxDONOTUSEurl = https://github.com/NCAR/ParallelIO [submodule "cice"] path = components/cice url = https://github.com/ESCOMP/CESM_CICE -fxtag = cesm_cice6_5_0_12 +fxtag = cesm_cice6_6_0_6 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CESM_CICE diff --git a/.lib/git-fleximod/git_fleximod/cli.py b/.lib/git-fleximod/git_fleximod/cli.py index ac9493cfc3..131466b9b5 100644 --- a/.lib/git-fleximod/git_fleximod/cli.py +++ b/.lib/git-fleximod/git_fleximod/cli.py @@ -2,7 +2,7 @@ import argparse from git_fleximod import utils -__version__ = "0.9.3" +__version__ = "0.9.4" def find_root_dir(filename=".gitmodules"): """ finds the highest directory in tree diff --git a/.lib/git-fleximod/git_fleximod/git_fleximod.py b/.lib/git-fleximod/git_fleximod/git_fleximod.py index 13f35df959..2c2601fa14 100755 --- a/.lib/git-fleximod/git_fleximod/git_fleximod.py +++ b/.lib/git-fleximod/git_fleximod/git_fleximod.py @@ -181,6 +181,8 @@ def init_submodule_from_gitmodules(gitmodules, name, root_dir, logger): url = gitmodules.get(name, "url") assert path and url, f"Malformed .gitmodules file {path} {url}" tag = gitmodules.get(name, "fxtag") + if not tag: + tag = gitmodules.get(name, "hash") fxurl = gitmodules.get(name, "fxDONOTUSEurl") fxsparse = gitmodules.get(name, "fxsparse") fxrequired = gitmodules.get(name, "fxrequired") @@ -250,7 +252,6 @@ def submodules_update(gitmodules, root_dir, requiredlist, force): newrequiredlist = ["AlwaysRequired"] if optional: newrequiredlist.append("AlwaysOptional") - submodules_update(gitsubmodules, repodir, newrequiredlist, force=force) def local_mods_output(): diff --git a/.lib/git-fleximod/pyproject.toml b/.lib/git-fleximod/pyproject.toml index 1d0419ad20..65924ff9a0 100644 --- a/.lib/git-fleximod/pyproject.toml +++ b/.lib/git-fleximod/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "git-fleximod" -version = "0.9.3" +version = "0.9.4" description = "Extended support for git-submodule and git-sparse-checkout" authors = ["Jim Edwards "] maintainers = ["Jim Edwards "] diff --git a/.lib/git-fleximod/tbump.toml b/.lib/git-fleximod/tbump.toml index b432206a54..be0b799d34 100644 --- a/.lib/git-fleximod/tbump.toml +++ b/.lib/git-fleximod/tbump.toml @@ -2,7 +2,7 @@ github_url = "https://github.com/jedwards4b/git-fleximod/" [version] -current = "0.9.3" +current = "0.9.4" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/ccs_config b/ccs_config index 775e9f7900..26aacc1403 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit 775e9f790044c3632e70e2beda9d66db34558b7b +Subproject commit 26aacc1403c01f44df4ab05d275c0fccd5ae3dce diff --git a/cime_config/testdefs/testlist_cam.xml b/cime_config/testdefs/testlist_cam.xml index c95f004d25..f55b9abda3 100644 --- a/cime_config/testdefs/testlist_cam.xml +++ b/cime_config/testdefs/testlist_cam.xml @@ -1779,6 +1779,15 @@ + + + + + + + + + diff --git a/components/cism b/components/cism index c84cc9f5b3..41843ef8fe 160000 --- a/components/cism +++ b/components/cism @@ -1 +1 @@ -Subproject commit c84cc9f5b3103766a35d0a7ddd5e9dbd7deae762 +Subproject commit 41843ef8fed91fcf60e2ea217c4f6f2ee5133c5d diff --git a/components/cmeps b/components/cmeps index a91cedfe58..4b636c6f79 160000 --- a/components/cmeps +++ b/components/cmeps @@ -1 +1 @@ -Subproject commit a91cedfe58658a9fc391195481137a2d83372c25 +Subproject commit 4b636c6f794ca02d854d15c620e26644751b449b diff --git a/components/mizuRoute b/components/mizuRoute index 2ff305a029..362bee329b 160000 --- a/components/mizuRoute +++ b/components/mizuRoute @@ -1 +1 @@ -Subproject commit 2ff305a0292cb06789de6cfea7ad3cc0d6173493 +Subproject commit 362bee329bd6bf1fd45c8f36e006b9c4294bb8ca diff --git a/components/mosart b/components/mosart index e2ffe00004..a246344e9b 160000 --- a/components/mosart +++ b/components/mosart @@ -1 +1 @@ -Subproject commit e2ffe00004cc416cfc8bcfae2a949474075c1d1f +Subproject commit a246344e9b28e4bb42313749094fa20d45e2b212 diff --git a/components/rtm b/components/rtm index b3dfcfbba5..6899b55816 160000 --- a/components/rtm +++ b/components/rtm @@ -1 +1 @@ -Subproject commit b3dfcfbba58c151ac5a6ab513b3515ef3deff798 +Subproject commit 6899b55816ee4d9b7cf983d74ba2997b97a13c4d diff --git a/share b/share index a48ff8790a..c5e7603c29 160000 --- a/share +++ b/share @@ -1 +1 @@ -Subproject commit a48ff8790a21d3831873ed9f023a43c606a1ef03 +Subproject commit c5e7603c29ea5e2fe93ca16d88bc9c7f16175bcd From 068ebc6a80e5aa3b6b3f18cc92bec1b5fe7c5cba Mon Sep 17 00:00:00 2001 From: peverwhee Date: Mon, 6 Jan 2025 12:56:16 -0700 Subject: [PATCH 2/8] update cime external --- .gitmodules | 2 +- cime | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 152d3dbb91..fbe3883001 100644 --- a/.gitmodules +++ b/.gitmodules @@ -151,7 +151,7 @@ fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git [submodule "cime"] path = cime url = https://github.com/ESMCI/cime -fxtag = cime6.1.56 +fxtag = cime6.1.58 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESMCI/cime diff --git a/cime b/cime index ac8e583108..cdf76d6919 160000 --- a/cime +++ b/cime @@ -1 +1 @@ -Subproject commit ac8e583108b1ce1f592a6f6436c71d6dc087f447 +Subproject commit cdf76d691961d697feafc14907f81b9c195dfe99 From 1e83f0b5de80ccec0fc4ccd404646662b7de7b48 Mon Sep 17 00:00:00 2001 From: peverwhee Date: Mon, 10 Feb 2025 13:38:00 -0700 Subject: [PATCH 3/8] update externals; add CUPiD --- .gitmodules | 14 +++++++++++--- ccs_config | 2 +- components/clm | 2 +- components/mosart | 2 +- tools/CUPiD | 1 + 5 files changed, 15 insertions(+), 6 deletions(-) create mode 160000 tools/CUPiD diff --git a/.gitmodules b/.gitmodules index 21c26f8d01..81f8f0e3e1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -130,7 +130,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/RTM [submodule "mosart"] path = components/mosart url = https://github.com/ESCOMP/MOSART -fxtag = mosart1.1.06 +fxtag = mosart1.1.07 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/MOSART @@ -144,7 +144,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/mizuRoute [submodule "ccs_config"] path = ccs_config url = https://github.com/ESMCI/ccs_config_cesm.git -fxtag = ccs_config_cesm1.0.15 +fxtag = ccs_config_cesm1.0.19 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git @@ -193,7 +193,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CESM_CICE [submodule "clm"] path = components/clm url = https://github.com/ESCOMP/CTSM -fxtag = ctsm5.3.016 +fxtag = ctsm5.3.017 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CTSM @@ -203,3 +203,11 @@ url = https://github.com/ESCOMP/FMS_interface fxtag = fi_240828 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/FMS_interface + +[submodule "tools/CUPiD"] + path = tools/CUPiD + url = https://github.com/NCAR/CUPiD.git +fxtag = v0.1.4 +fxrequired = ToplevelRequired +fxDONOTUSEurl = https://github.com/NCAR/CUPiD.git + diff --git a/ccs_config b/ccs_config index 26aacc1403..f2aa0f45a3 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit 26aacc1403c01f44df4ab05d275c0fccd5ae3dce +Subproject commit f2aa0f45a37e7a82ec83f63fdc602699f59474c2 diff --git a/components/clm b/components/clm index f437651ee4..203db121c0 160000 --- a/components/clm +++ b/components/clm @@ -1 +1 @@ -Subproject commit f437651ee449789af9325882bb0acc09576c9411 +Subproject commit 203db121c01b593324078ecb55d7535e45723989 diff --git a/components/mosart b/components/mosart index a246344e9b..330574fbd8 160000 --- a/components/mosart +++ b/components/mosart @@ -1 +1 @@ -Subproject commit a246344e9b28e4bb42313749094fa20d45e2b212 +Subproject commit 330574fbd8a4810b7a168175690cbf7e1a7f6dab diff --git a/tools/CUPiD b/tools/CUPiD new file mode 160000 index 0000000000..18c0e37022 --- /dev/null +++ b/tools/CUPiD @@ -0,0 +1 @@ +Subproject commit 18c0e370222070ae6b9bc061d3d404b115fdc1d3 From df46a400a28e5006b9bfa197992d1feea3c62ebc Mon Sep 17 00:00:00 2001 From: peverwhee Date: Mon, 10 Feb 2025 13:39:59 -0700 Subject: [PATCH 4/8] fix formatting --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 81f8f0e3e1..5ea2560cf6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -205,8 +205,8 @@ fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/FMS_interface [submodule "tools/CUPiD"] - path = tools/CUPiD - url = https://github.com/NCAR/CUPiD.git +path = tools/CUPiD +url = https://github.com/NCAR/CUPiD.git fxtag = v0.1.4 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/NCAR/CUPiD.git From 6ebf2f2d84c8f4455de775006abaaf2b5f7c009a Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 14 Feb 2025 14:12:22 -0700 Subject: [PATCH 5/8] needed to update share beyond share1.1.7 --- src/dynamics/mpas/driver/cam_mpas_subdriver.F90 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dynamics/mpas/driver/cam_mpas_subdriver.F90 b/src/dynamics/mpas/driver/cam_mpas_subdriver.F90 index 59d9c462ee..f456967484 100644 --- a/src/dynamics/mpas/driver/cam_mpas_subdriver.F90 +++ b/src/dynamics/mpas/driver/cam_mpas_subdriver.F90 @@ -49,10 +49,12 @@ module cam_mpas_subdriver ! This interface should be compatible with CAM's endrun routine ! abstract interface - subroutine halt_model(mesg, ierr) + subroutine halt_model(mesg, ierr, line, file) use shr_kind_mod, only : shr_kind_in character(len=*), intent(in), optional :: mesg integer(kind=shr_kind_in), intent(in), optional :: ierr + integer(kind=shr_kind_in), intent(in), optional :: line + character(len=*), intent(in), optional :: file end subroutine halt_model end interface From 0329450845e46b1b785943603325efd0d5f8f84b Mon Sep 17 00:00:00 2001 From: peverwhee Date: Fri, 14 Feb 2025 14:57:37 -0700 Subject: [PATCH 6/8] update share external --- .gitmodules | 2 +- share | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 4a89b23e09..f899639357 100644 --- a/.gitmodules +++ b/.gitmodules @@ -172,7 +172,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS.git [submodule "share"] path = share url = https://github.com/ESCOMP/CESM_share -fxtag = share1.1.7 +fxtag = share1.1.9 fxrequired = ToplevelRequired fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share diff --git a/share b/share index c5e7603c29..14338bef3f 160000 --- a/share +++ b/share @@ -1 +1 @@ -Subproject commit c5e7603c29ea5e2fe93ca16d88bc9c7f16175bcd +Subproject commit 14338bef3fa604d49160e376257264db1d3313e5 From 9eee34ebecb888655d21d93a997231678facb0b8 Mon Sep 17 00:00:00 2001 From: peverwhee Date: Tue, 18 Feb 2025 13:33:04 -0700 Subject: [PATCH 7/8] update fleximod workflow to match CESM --- .github/workflows/fleximod_test.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fleximod_test.yaml b/.github/workflows/fleximod_test.yaml index 8d4203e1d3..4e432c0b19 100644 --- a/.github/workflows/fleximod_test.yaml +++ b/.github/workflows/fleximod_test.yaml @@ -4,6 +4,7 @@ jobs: fleximod-test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: # oldest supported and latest supported python-version: ["3.7", "3.x"] @@ -13,9 +14,16 @@ jobs: - id: run-fleximod run: | $GITHUB_WORKSPACE/bin/git-fleximod update + echo + echo "Update complete, checking status" + echo $GITHUB_WORKSPACE/bin/git-fleximod test + - id: check-cleanliness + run: | + echo + echo "Checking if git fleximod matches expected externals" + echo + git diff --exit-code # - name: Setup tmate session # if: ${{ failure() }} # uses: mxschmitt/action-tmate@v3 - - From ac833d2d0c0973a0d540f17e55b424d2efdd7faa Mon Sep 17 00:00:00 2001 From: peverwhee Date: Thu, 20 Feb 2025 15:44:24 -0700 Subject: [PATCH 8/8] finalize changelog --- doc/ChangeLog | 135 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) diff --git a/doc/ChangeLog b/doc/ChangeLog index 1f5f6feb7c..8f0f0e668a 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,140 @@ =============================================================== +Tag name: cam6_4_069 +Originator(s): peverwhee +Date: 20 February 2025 +One-line Summary: Update externals to match beta05; update git-fleximod +Github PR URL: https://github.com/ESCOMP/CAM/pull/1219 + +Purpose of changes (include the issue number and title text for each relevant GitHub issue): + +Resolve issue #1213 - Update externals to match alpha05c + +Resolve issue #1258 - share1.1.9 requires change in cam_mpas_subdriver.F90 + +Describe any changes made to build system: none + +Describe any changes made to the namelist: none + +List any changes to the defaults for the boundary datasets: none + +Describe any substantial timing or memory changes: none + +Code reviewed by: cacraig + +List all files eliminated: none + +List all files added and what they do: none + +List all existing files that have been modified, and describe the changes: + +.github/workflows/fleximod_test.yaml + - update fleximod workflow to include check that the checked out externals + match what is expected + +.gitmodules + - update to the following externals: + - ccs_config_cesm1.0.19 + - ctsm5.3.01i7 + - mosart1.1.07 + - cismwrap_2_2_005 + - rtm1_0_84 + - cesm-coupling.n03_v2.2.0 (MizuRoute) + - cime6.1.58 + - cmeps1.0.33 + - share1.1.9 + - add CUPiD external + +.lib/git-fleximod/* + - update git-fleximod to 0.9.4 + +cime_config/testdefs/testlist_cam.xml + - add new ERR test (izumi/gnu/cam7 configuration) to fully test resubmit logic + +src/dynamics/mpas/driver/cam_mpas_subdriver.F90 + - update to comply with new shr_sys_abort interface + +cime/ +share/ +components/cism +components/clm +components/cmeps +components/mizuRoute +components/mosart +components/rtm +tools/CUPiD + - submodule updates + +If there were any failures reported from running test_driver.sh on any test +platform, and checkin with these failures has been OK'd by the gatekeeper, +then copy the lines from the td.*.status files for the failed tests to the +appropriate machine below. All failed tests must be justified. + +derecho/intel/aux_cam: +ERP_D_Ln9.ne30pg3_ne30pg3_mg17.FLTHIST.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ld3.f09_f09_mg17.FWHIST.derecho_intel.cam-reduced_hist1d (Overall: NLFAIL) +ERP_Ld3.ne30pg3_ne30pg3_mg17.FHISTC_MTt4s.derecho_intel.cam-outfrq1d_aoa (Overall: NLFAIL) +ERP_Lh12.f19_f19_mg17.FW4madSD.derecho_intel.cam-outfrq3h (Overall: NLFAIL) +ERP_Ln9.C96_C96_mg17.F2000climo.derecho_intel.cam-outfrq9s_mg3 (Overall: NLFAIL) +ERP_Ln9.f09_f09_mg17.F1850.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.f09_f09_mg17.F2000climo.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.f09_f09_mg17.F2010climo.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.f09_f09_mg17.FHIST_BDRD.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.f19_f19_mg17.FWsc1850.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.ne30pg3_ne30pg3_mg17.FCnudged.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERP_Ln9.ne30pg3_ne30pg3_mg17.FW2000climo.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERS_Ln9.f09_f09_mg17.FX2000.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERS_Ln9.f19_f19_mg17.FXSD.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +ERS_Ln9_P288x1.mpasa120_mpasa120.F2000climo.derecho_intel.cam-outfrq9s_mpasa120 (Overall: NLFAIL) +SMS_D_Ln9.f09_f09_mg17.FCts2nudged.derecho_intel.cam-outfrq9s_leapday (Overall: NLFAIL) +SMS_D_Ln9.f09_f09_mg17.FCvbsxHIST.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9.f09_f09_mg17.FSD.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9.f19_f19_mg17.FWma2000climo.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9.f19_f19_mg17.FWma2000climo.derecho_intel.cam-outfrq9s_waccm_ma_mam4 (Overall: NLFAIL) +SMS_D_Ln9.ne16pg3_ne16pg3_mg17.FX2000.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9.ne30pg3_ne30pg3_mg17.FMTHIST.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9_P1280x1.ne0ARCTICne30x4_ne0ARCTICne30x4_mt12.FHIST.derecho_intel.cam-outfrq9s (Overall: NLFAIL) +SMS_D_Ln9_P1280x1.ne30pg3_ne30pg3_mg17.FHISTC_MTt1s.derecho_intel.cam-outfrq9s_Leung_dust (Overall: NLFAIL) +SMS_Ld1.f09_f09_mg17.FW2000climo.derecho_intel.cam-outfrq1d (Overall: NLFAIL) +SMS_Ld1.ne30pg3_ne30pg3_mg17.FC2010climo.derecho_intel.cam-outfrq1d (Overall: NLFAIL) +SMS_Lh12.f09_f09_mg17.FCSD_HCO.derecho_intel.cam-outfrq3h (Overall: NLFAIL) +SMS_Ln9.f09_f09_mg17.F2010climo.derecho_intel.cam-nudging (Overall: NLFAIL) +SMS_Ln9.f09_f09_mg17.FW1850.derecho_intel.cam-reduced_hist3s (Overall: NLFAIL) +SMS_Ln9.f19_f19.F2000climo.derecho_intel.cam-silhs (Overall: NLFAIL) +SMS_Ln9.f19_f19_mg17.FHIST.derecho_intel.cam-outfrq9s_nochem (Overall: NLFAIL) +SMS_Ln9.ne30pg3_ne30pg3_mg17.FW2000climo.derecho_intel.cam-outfrq9s_rrtmgp (Overall: NLFAIL) +- updated CLM namelist variable 'paramfile' + +ERP_Ln9.f09_f09_mg17.FCSD_HCO.derecho_intel.cam-outfrq9s (Overall: FAIL) +SMS_Ld1.f09_f09_mg17.FCHIST_GC.derecho_intel.cam-outfrq1d (Overall: DIFF) +- pre-existing failures due to HEMCO not having reproducible results (issues #1018 and #856) + +SMS_D_Ln9.f19_f19_mg17.FXHIST.derecho_intel.cam-outfrq9s_amie (Overall: FAIL) +SMS_D_Ln9_P1280x1.ne0CONUSne30x8_ne0CONUSne30x8_mt12.FCHIST.derecho_intel.cam-outfrq9s (Overall: FAIL) +- pre-existing failures due to build-namelist error requiring CLM/CTSM external update + +derecho/nvhpc/aux_cam: +ERS_Ln9.ne30pg3_ne30pg3_mg17.F2000dev.derecho_nvhpc.cam-outfrq9s_gpu_default (Overall: NLFAIL) +- updated CLM namelist variable 'paramfile' + +izumi/nag/aux_cam: all PASS + +izumi/gnu/aux_cam: +ERR_D_Ln9.ne3pg3_ne3pg3_mg37.FLTHIST.izumi_gnu.cam-outfrq9s.GC.aux_cam_gnu_20250220125036 (Overall: DIFF) +- new test; does not have baselines to compare to + +ERP_D_Ln9.ne3pg3_ne3pg3_mg37.FLTHIST.izumi_gnu.cam-outfrq9s (Overall: NLFAIL) +ERS_Ln9_P24x1.mpasa480_mpasa480.F2000climo.izumi_gnu.cam-outfrq9s_mpasa480 (Overall: NLFAIL) +SMS_P48x1_D_Ln9.f19_f19_mg17.FW4madSD.izumi_gnu.cam-outfrq9s (Overall: NLFAIL) +- updated CLM namelist variable 'paramfile' + +CAM tag used for the baseline comparison tests if different than previous +tag: + +Summarize any changes to answers: b4b + +=============================================================== + Tag name: cam6_4_068 Originator(s): eaton Date: 19 February 2025