From 92cc04786bdac89ac3c366d0a01dd8cea4dc9f4e Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Wed, 20 Nov 2024 15:13:15 -0700 Subject: [PATCH 01/11] new workflow and compset aliases --- .github/workflows/build.yaml | 48 +++++++++ .github/workflows/derecho.yaml | 32 ++++++ .github/workflows/fleximod_test.yaml | 4 +- .gitmodules | 8 +- .lib/git-fleximod/git_fleximod/cli.py | 38 ++++--- .../git-fleximod/git_fleximod/git_fleximod.py | 2 +- .lib/git-fleximod/git_fleximod/submodule.py | 2 +- .lib/git-fleximod/poetry.lock | 6 +- .lib/git-fleximod/pyproject.toml | 2 +- .lib/git-fleximod/tbump.toml | 2 +- .lib/git-fleximod/tests/conftest.py | 4 +- ccs_config | 2 +- cime_config/config_compsets.xml | 60 +++++++---- cime_config/config_pes.xml | 8 +- cime_config/testfiles/ExpectedTestFails.xml | 100 ++++++++++++++++++ cime_config/testlist_allactive.xml | 72 ++++++++++++- components/cam | 2 +- components/cdeps | 2 +- components/cice | 2 +- components/clm | 2 +- components/mom | 2 +- libraries/mpi-serial | 2 +- share | 2 +- 23 files changed, 335 insertions(+), 69 deletions(-) create mode 100644 .github/workflows/build.yaml create mode 100644 .github/workflows/derecho.yaml create mode 100644 cime_config/testfiles/ExpectedTestFails.xml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 000000000..e3a2f2a08 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,48 @@ +on: + workflow_call: + inputs: + compiler: + type: string + required: true + +jobs: + test: + # This statement avoids failures in another instance (another compiler) to cancel this run + # it also prevents canceling the run using the cancel button on the github website + # another form (if: success() || failure()) should allow the cancel button to work but tests with that form didnt act as expected + if: always() + env: + CC: mpicc + FC: mpifort + CXX: mpicxx + CIME_MODEL: cesm + CIME_DRIVER: nuopc + # Since self runners can only run one step at a time this needs statement is not required + # needs: setup + runs-on: hpc-runner + defaults: + run: + shell: bash {0} + steps: + - name: Run ${{ inputs.compiler }} tests + # Allows the next step to run even if this one fails + continue-on-error: true + run: | + pwd + cd cime/scripts + module load cmake + # Need to use main queue to avoid memory overflow errors + qcmd -q main -v PROJECT=P93300606 -A P93300606 -l walltime=02:00:00 -- ./create_test --xml-machine derecho\ + --xml-category github --no-run --compiler ${{ inputs.compiler }} --test-id ${GITHUB_RUN_ID}${{ inputs.compiler }} + - name: check status + run: | + cd $SCRATCH + # if no fails and no passes in expected fails then cleanup and exit 0 otherwise exit 1 + ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml | grep FAIL | grep -v FAILURE + retcode = $? + if [ $retcode -eq 0 ]; then + exit 1 + fi + # tests pass, clean up + rm -fr *.${GITHUB_RUN_ID}${{ inputs.compiler }} + exit 0 \ No newline at end of file diff --git a/.github/workflows/derecho.yaml b/.github/workflows/derecho.yaml new file mode 100644 index 000000000..287940bd0 --- /dev/null +++ b/.github/workflows/derecho.yaml @@ -0,0 +1,32 @@ +name: cesm-derecho-hosted +run-name: ${{ github.actor }} is testing the project + +on: + pull_request: + branches: [ cesm3.0-alphabranch ] + types: [ labeled ] + +jobs: + + setup: + # only run this workflow if the label run-pr-tests is applied + if: ${{ github.event.label.name == 'run-pr-tests' }} + # currently hpc-runner is derecho.hpc.ucar.edu + runs-on: hpc-runner + + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Run git-fleximod + run: | + pwd + module list + ./bin/git-fleximod update + + build: + strategy: + matrix: + compiler: [gnu, intel, intel-oneapi, nvhpc] + uses: ./.github/workflows/build.yaml + with: + compiler: ${{ matrix.compiler }} diff --git a/.github/workflows/fleximod_test.yaml b/.github/workflows/fleximod_test.yaml index f18dab136..471573b5a 100644 --- a/.github/workflows/fleximod_test.yaml +++ b/.github/workflows/fleximod_test.yaml @@ -1,8 +1,8 @@ on: push: - branches: [ master, cesm3.0-alphabranch ] + branches: [ cesm3.0-alphabranch ] pull_request: - branches: [ master, cesm3.0-alphabranch ] + branches: [ cesm3.0-alphabranch ] jobs: fleximod-test: runs-on: ubuntu-latest diff --git a/.gitmodules b/.gitmodules index 8978635ea..8aedfcbfc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,9 +28,9 @@ [submodule "ccs_config"] path = ccs_config - url = https://github.com/ESMCI/ccs_config_cesm.git + url = https://github.com/jedwards4b/ccs_config_cesm.git fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git - fxtag = ccs_config_cesm1.0.8 + fxtag = ccs_config_cesm1.0.10_update_default_ww3grid03 fxrequired = ToplevelRequired [submodule "cime"] @@ -56,9 +56,9 @@ [submodule "cam"] path = components/cam - url = https://www.github.com/ESCOMP/CAM + url = https://www.github.com/jedwards4b/CAM fxDONOTUSEurl = https://www.github.com/ESCOMP/CAM - fxtag = cam6_4_046 + fxtag = remove_mct_submodule_update_config_component01 fxrequired = ToplevelRequired [submodule "clm"] diff --git a/.lib/git-fleximod/git_fleximod/cli.py b/.lib/git-fleximod/git_fleximod/cli.py index 208bc0468..ac9493cfc 100644 --- a/.lib/git-fleximod/git_fleximod/cli.py +++ b/.lib/git-fleximod/git_fleximod/cli.py @@ -2,27 +2,31 @@ import argparse from git_fleximod import utils -__version__ = "0.9.2" +__version__ = "0.9.3" def find_root_dir(filename=".gitmodules"): """ finds the highest directory in tree which contains a file called filename """ - d = Path.cwd() - root = Path(d.root) - dirlist = [] - dl = d - while dl != root: - dirlist.append(dl) - dl = dl.parent - dirlist.append(root) - dirlist.reverse() - - for dl in dirlist: - attempt = dl / filename - if attempt.is_file(): - return str(dl) - return None - + try: + root = utils.execute_subprocess(["git","rev-parse", "--show-toplevel"], + output_to_caller=True ).rstrip() + except: + d = Path.cwd() + root = Path(d.root) + dirlist = [] + dl = d + while dl != root: + dirlist.append(dl) + dl = dl.parent + dirlist.append(root) + dirlist.reverse() + + for dl in dirlist: + attempt = dl / filename + if attempt.is_file(): + return str(dl) + return None + return Path(root) def get_parser(): description = """ diff --git a/.lib/git-fleximod/git_fleximod/git_fleximod.py b/.lib/git-fleximod/git_fleximod/git_fleximod.py index 0851e9d09..13f35df95 100755 --- a/.lib/git-fleximod/git_fleximod/git_fleximod.py +++ b/.lib/git-fleximod/git_fleximod/git_fleximod.py @@ -342,7 +342,7 @@ def main(): excludelist=excludelist, ) if not gitmodules.sections(): - sys.exit("No submodule components found") + sys.exit(f"No submodule components found, root_dir={root_dir}") retval = 0 if action == "update": submodules_update(gitmodules, root_dir, fxrequired, force) diff --git a/.lib/git-fleximod/git_fleximod/submodule.py b/.lib/git-fleximod/git_fleximod/submodule.py index c939d54bc..75d9dd4eb 100644 --- a/.lib/git-fleximod/git_fleximod/submodule.py +++ b/.lib/git-fleximod/git_fleximod/submodule.py @@ -221,7 +221,7 @@ def sparse_checkout(self): if superroot: gitroot = superroot.strip() else: - gitroot = self.root_dir.strip() + gitroot = self.root_dir # Now need to move the .git dir to the submodule location rootdotgit = os.path.join(self.root_dir, ".git") while os.path.isfile(rootdotgit): diff --git a/.lib/git-fleximod/poetry.lock b/.lib/git-fleximod/poetry.lock index 3a74effcd..ac82fb0d9 100644 --- a/.lib/git-fleximod/poetry.lock +++ b/.lib/git-fleximod/poetry.lock @@ -30,13 +30,13 @@ dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] [[package]] name = "certifi" -version = "2024.6.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"}, - {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] diff --git a/.lib/git-fleximod/pyproject.toml b/.lib/git-fleximod/pyproject.toml index 619cdabe3..1d0419ad2 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.2" +version = "0.9.3" 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 920ff0591..b432206a5 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.2" +current = "0.9.3" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/.lib/git-fleximod/tests/conftest.py b/.lib/git-fleximod/tests/conftest.py index 81edbe713..1dd1b86f3 100644 --- a/.lib/git-fleximod/tests/conftest.py +++ b/.lib/git-fleximod/tests/conftest.py @@ -32,7 +32,7 @@ def logger(): "submodule_name": "test_optional", "status1" : "test_optional MPIserial_2.5.0-3-gd82ce7c is out of sync with .gitmodules MPIserial_2.4.0", "status2" : "test_optional at tag MPIserial_2.4.0", - "status3" : "test_optional not checked out, out of sync at tag None, expected tag is MPIserial_2.4.0 (optional)", + "status3" : "test_optional not checked out, out of sync at tag MPIserial_2.5.1, expected tag is MPIserial_2.4.0 (optional)", "status4" : "test_optional at tag MPIserial_2.4.0", "gitmodules_content": """ [submodule "test_optional"] @@ -46,7 +46,7 @@ def logger(): "submodule_name": "test_alwaysoptional", "status1" : "test_alwaysoptional MPIserial_2.3.0 is out of sync with .gitmodules e5cf35c", "status2" : "test_alwaysoptional at hash e5cf35c", - "status3" : "out of sync at tag None, expected tag is e5cf35c", + "status3" : "out of sync at tag MPIserial_2.5.1, expected tag is e5cf35c", "status4" : "test_alwaysoptional at hash e5cf35c", "gitmodules_content": """ [submodule "test_alwaysoptional"] diff --git a/ccs_config b/ccs_config index e4ac80ef1..e874fd0d9 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit e4ac80ef142954e582b4065222145352f22cd3a4 +Subproject commit e874fd0d9cd1c3e23a64d60a34c814062b51e59a diff --git a/cime_config/config_compsets.xml b/cime_config/config_compsets.xml index 099602a87..2f510da92 100644 --- a/cime_config/config_compsets.xml +++ b/cime_config/config_compsets.xml @@ -36,50 +36,64 @@ - grid (optional regular expression match for grid to work with the compset) - + - BLT1850 - 1850_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6_MOSART_DGLC%NOEVOLVE_SWAV + B1850C_MTt4s + 1850C_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - - BLT1850_MARBL - 1850_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_SWAV + B1850CM + 1850C_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - - BMT1850_MARBL - 1850_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_SWAV - - BLTHIST - HIST_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6_MOSART_DGLC%NOEVOLVE_SWAV + B1850C_MTso + 1850C_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - BMT1850 - 1850_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6_MOSART_DGLC%NOEVOLVE_SWAV + 1850C_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - - BMT1850_MARBL - 1850_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_SWAV + BHISTC_MTso + HISTC_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - BMTHIST - HIST_CAM70%MT_CLM60%BGC-CROP_CICE_MOM6_MOSART_DGLC%NOEVOLVE_SWAV + BHISTC_MTt4s + HISTC_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + + + BHISTCM + HISTC_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 - - - - + + B1850C_LTso + 1850C_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + + + BLT1850 + 1850C_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + + + BHISTC_LTso + HISTC_CAM70%LT_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + + + + B1850E_MTt4s + 1850E_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + + + B1850EM + 1850E_CAM70%MT%CT4S_CLM60%BGC-CROP_CICE_MOM6%MARBL-BIO_MOSART_DGLC%NOEVOLVE_WW3 + diff --git a/cime_config/config_pes.xml b/cime_config/config_pes.xml index 080f435ac..c940a51bc 100644 --- a/cime_config/config_pes.xml +++ b/cime_config/config_pes.xml @@ -75,7 +75,7 @@ 0 - + 20 ypd/ 7100 pe-hrs/simyr expected - + 5400 1792 1792 @@ -154,7 +154,7 @@ 3608 3300 4 - 1 + 64 5400 diff --git a/cime_config/testfiles/ExpectedTestFails.xml b/cime_config/testfiles/ExpectedTestFails.xml new file mode 100644 index 000000000..5688a8ab6 --- /dev/null +++ b/cime_config/testfiles/ExpectedTestFails.xml @@ -0,0 +1,100 @@ + + + + + + + + + + + FAIL + + + + + + + FAIL + + + + + + + FAIL + + + + + + + FAIL + + + + + + + + FAIL + + + + + + + + FAIL + + + + + + + FAIL + + + + + + + FAIL + + + + + + + + diff --git a/cime_config/testlist_allactive.xml b/cime_config/testlist_allactive.xml index 59f5ec73c..750cd9bf8 100644 --- a/cime_config/testlist_allactive.xml +++ b/cime_config/testlist_allactive.xml @@ -53,6 +53,7 @@ + @@ -61,19 +62,86 @@ + - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/components/cam b/components/cam index 98c35fcb0..02b0eb568 160000 --- a/components/cam +++ b/components/cam @@ -1 +1 @@ -Subproject commit 98c35fcb0aa62d4b51ebc437e3d5df185b17e817 +Subproject commit 02b0eb568b943c2e72ea8685649e7b648bd6a495 diff --git a/components/cdeps b/components/cdeps index f6bc97483..4165d0657 160000 --- a/components/cdeps +++ b/components/cdeps @@ -1 +1 @@ -Subproject commit f6bc97483a1bfb7352c6c5610a13ed898a86990b +Subproject commit 4165d0657d6f60e8dba650e9a1771a1344972b76 diff --git a/components/cice b/components/cice index f14ec8339..eebe30a55 160000 --- a/components/cice +++ b/components/cice @@ -1 +1 @@ -Subproject commit f14ec8339bc5bc4a7a0664da5e247b5cfda531a1 +Subproject commit eebe30a55c114ac8456774e422f721d7504911e0 diff --git a/components/clm b/components/clm index a3459c540..6d8dad82e 160000 --- a/components/clm +++ b/components/clm @@ -1 +1 @@ -Subproject commit a3459c54022057a2d5711c7fffdf5b3524623857 +Subproject commit 6d8dad82ed98a0e51e315d42991459386dc2da96 diff --git a/components/mom b/components/mom index 298d20a2a..112f5caa9 160000 --- a/components/mom +++ b/components/mom @@ -1 +1 @@ -Subproject commit 298d20a2a0c952eb185f8641e304028a4a58d5b5 +Subproject commit 112f5caa98b22351753ad0ddeb513b2a76083f25 diff --git a/libraries/mpi-serial b/libraries/mpi-serial index 2c44fb3d3..39416b754 160000 --- a/libraries/mpi-serial +++ b/libraries/mpi-serial @@ -1 +1 @@ -Subproject commit 2c44fb3d327be7c6429894bc5d4de769f3486848 +Subproject commit 39416b754652bd281a89e86b37734aa5f3ffafd6 diff --git a/share b/share index f6f31fd61..3dd7edb12 160000 --- a/share +++ b/share @@ -1 +1 @@ -Subproject commit f6f31fd61cb8f80aee97311fcca64b3e26b0202c +Subproject commit 3dd7edb12d3fc109914f922f3131711cf0d7fbd4 From 2087306ecc0086fe0f36f88f6ed598fb7f5bfd20 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Wed, 20 Nov 2024 15:18:41 -0700 Subject: [PATCH 02/11] tabs again --- .github/workflows/build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e3a2f2a08..662144ac7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -40,9 +40,9 @@ jobs: # if no fails and no passes in expected fails then cleanup and exit 0 otherwise exit 1 ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml | grep FAIL | grep -v FAILURE retcode = $? - if [ $retcode -eq 0 ]; then + if [ $retcode -eq 0 ]; then exit 1 - fi - # tests pass, clean up - rm -fr *.${GITHUB_RUN_ID}${{ inputs.compiler }} - exit 0 \ No newline at end of file + fi + # tests pass, clean up + rm -fr *.${GITHUB_RUN_ID}${{ inputs.compiler }} + exit 0 \ No newline at end of file From 3f0253063623b9e64c9e4dc38f8e1fc5bb489cd9 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Wed, 20 Nov 2024 17:04:48 -0700 Subject: [PATCH 03/11] fix typo in workflow script --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 662144ac7..daede784a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -39,7 +39,7 @@ jobs: cd $SCRATCH # if no fails and no passes in expected fails then cleanup and exit 0 otherwise exit 1 ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml | grep FAIL | grep -v FAILURE - retcode = $? + retcode=$? if [ $retcode -eq 0 ]; then exit 1 fi From 91e1a271643596930638b52016464fc56bde07bd Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Thu, 21 Nov 2024 10:59:07 -0700 Subject: [PATCH 04/11] fixes for nvhpc build --- .github/workflows/build.yaml | 2 +- .gitmodules | 6 +++--- ccs_config | 2 +- cime_config/testfiles/ExpectedTestFails.xml | 12 ++++++------ components/mom | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index daede784a..88b11c25c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -38,7 +38,7 @@ jobs: run: | cd $SCRATCH # if no fails and no passes in expected fails then cleanup and exit 0 otherwise exit 1 - ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml | grep FAIL | grep -v FAILURE + ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --fails-only --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml | grep FAIL | grep -v FAILURE retcode=$? if [ $retcode -eq 0 ]; then exit 1 diff --git a/.gitmodules b/.gitmodules index 8aedfcbfc..fab2bd8c3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -30,7 +30,7 @@ path = ccs_config url = https://github.com/jedwards4b/ccs_config_cesm.git fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git - fxtag = ccs_config_cesm1.0.10_update_default_ww3grid03 + fxtag = ccs_config_cesm1.0.10_update_default_ww3grid04 fxrequired = ToplevelRequired [submodule "cime"] @@ -77,10 +77,10 @@ [submodule "mom"] path = components/mom - url = https://github.com/ESCOMP/MOM_interface + url = https://github.com/jedwards4b/MOM_interface fxDONOTUSEurl = https://github.com/ESCOMP/MOM_interface fxrequired = ToplevelRequired - fxtag = mi_241104 + fxtag = mi_241104_ncar_241101_use_atan2_for_nvhpc01 [submodule "cism"] path = components/cism diff --git a/ccs_config b/ccs_config index e874fd0d9..7bd0d1f05 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit e874fd0d9cd1c3e23a64d60a34c814062b51e59a +Subproject commit 7bd0d1f05e20e6e1d3f1fa260a788206294f5927 diff --git a/cime_config/testfiles/ExpectedTestFails.xml b/cime_config/testfiles/ExpectedTestFails.xml index 5688a8ab6..b377854c9 100644 --- a/cime_config/testfiles/ExpectedTestFails.xml +++ b/cime_config/testfiles/ExpectedTestFails.xml @@ -39,28 +39,28 @@ FAIL - - + https://github.com/NCAR/MOM6/issues/324 + atan function FAIL - + https://github.com/NCAR/MOM6/issues/324 FAIL - + https://github.com/NCAR/MOM6/issues/324 FAIL - + https://github.com/NCAR/MOM6/issues/324 @@ -69,7 +69,7 @@ FAIL - + FMS file mpp.F90 fails to compile in debug mode diff --git a/components/mom b/components/mom index 112f5caa9..9b84901bf 160000 --- a/components/mom +++ b/components/mom @@ -1 +1 @@ -Subproject commit 112f5caa98b22351753ad0ddeb513b2a76083f25 +Subproject commit 9b84901bf530b1f10e68ab9d124949472595e120 From d48d6e92c3abdee16192db4851aa919164213d29 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Thu, 21 Nov 2024 13:47:57 -0700 Subject: [PATCH 05/11] update Expected Fails file by removing all nvhpc fails --- cime_config/testfiles/ExpectedTestFails.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cime_config/testfiles/ExpectedTestFails.xml b/cime_config/testfiles/ExpectedTestFails.xml index b377854c9..62ee74fdd 100644 --- a/cime_config/testfiles/ExpectedTestFails.xml +++ b/cime_config/testfiles/ExpectedTestFails.xml @@ -27,15 +27,15 @@ sort of comment you desire. --> + - + From 42ed89034c5c037b4a0b279864d571b4e1706349 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Thu, 21 Nov 2024 16:53:56 -0700 Subject: [PATCH 06/11] back out intel change --- .gitmodules | 2 +- ccs_config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index fab2bd8c3..d04ad46df 100644 --- a/.gitmodules +++ b/.gitmodules @@ -30,7 +30,7 @@ path = ccs_config url = https://github.com/jedwards4b/ccs_config_cesm.git fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git - fxtag = ccs_config_cesm1.0.10_update_default_ww3grid04 + fxtag = ccs_config_cesm1.0.10_update_default_ww3grid05 fxrequired = ToplevelRequired [submodule "cime"] diff --git a/ccs_config b/ccs_config index 7bd0d1f05..45bf60386 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit 7bd0d1f05e20e6e1d3f1fa260a788206294f5927 +Subproject commit 45bf603862e0193eb0253c49a55b154224743ba1 From 2ffa535bd5c03e06334e7b11596f28f4787948be Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 22 Nov 2024 10:29:23 -0700 Subject: [PATCH 07/11] seperate intel and intel-oneapi cmake files --- .gitmodules | 2 +- ccs_config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index d04ad46df..51ad08b5d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -30,7 +30,7 @@ path = ccs_config url = https://github.com/jedwards4b/ccs_config_cesm.git fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git - fxtag = ccs_config_cesm1.0.10_update_default_ww3grid05 + fxtag = ccs_config_cesm1.0.10_update_default_ww3grid07 fxrequired = ToplevelRequired [submodule "cime"] diff --git a/ccs_config b/ccs_config index 45bf60386..3c30d1ca7 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit 45bf603862e0193eb0253c49a55b154224743ba1 +Subproject commit 3c30d1ca7d2a4bee7993532b5c3955fcd4409954 From 703dcb3e87e9d8d952b810a197d7eed644d0530b Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 22 Nov 2024 12:15:22 -0700 Subject: [PATCH 08/11] try updating git-fleximod to use test mode --- .github/workflows/fleximod_test.yaml | 4 +--- .gitmodules | 4 ++-- components/cam | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/fleximod_test.yaml b/.github/workflows/fleximod_test.yaml index 471573b5a..760e33d27 100644 --- a/.github/workflows/fleximod_test.yaml +++ b/.github/workflows/fleximod_test.yaml @@ -19,9 +19,7 @@ jobs: echo echo "Update complete, checking status" echo - $GITHUB_WORKSPACE/bin/git-fleximod status | tee status.out - grep testfails status.out || exit 0 - exit 1 + $GITHUB_WORKSPACE/bin/git-fleximod test # - name: Setup tmate session # if: ${{ failure() }} # uses: mxschmitt/action-tmate@v3 diff --git a/.gitmodules b/.gitmodules index 51ad08b5d..ce4f9e33a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -56,9 +56,9 @@ [submodule "cam"] path = components/cam - url = https://www.github.com/jedwards4b/CAM + url = https://www.github.com/ESCOMP/CAM fxDONOTUSEurl = https://www.github.com/ESCOMP/CAM - fxtag = remove_mct_submodule_update_config_component01 + fxtag = cam6_4_047 fxrequired = ToplevelRequired [submodule "clm"] diff --git a/components/cam b/components/cam index 02b0eb568..47dd341f8 160000 --- a/components/cam +++ b/components/cam @@ -1 +1 @@ -Subproject commit 02b0eb568b943c2e72ea8685649e7b648bd6a495 +Subproject commit 47dd341f83afc1e1faf28fd4cb6e463629db4c19 From d6eae0f17dbe1e6ee1b6a8d18b265514c8fc2646 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 22 Nov 2024 13:32:58 -0700 Subject: [PATCH 09/11] update ccs_config and cmeps --- .gitmodules | 6 +++--- ccs_config | 2 +- components/cmeps | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index ce4f9e33a..43ea4ced9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,9 +28,9 @@ [submodule "ccs_config"] path = ccs_config - url = https://github.com/jedwards4b/ccs_config_cesm.git + url = https://github.com/ESMCI/ccs_config_cesm.git fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git - fxtag = ccs_config_cesm1.0.10_update_default_ww3grid07 + fxtag = ccs_config_cesm1.0.12 fxrequired = ToplevelRequired [submodule "cime"] @@ -101,7 +101,7 @@ url = https://github.com/ESCOMP/CMEPS.git fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git fxrequired = ToplevelRequired - fxtag = cmeps1.0.16 + fxtag = cmeps1.0.25 [submodule "rtm"] path = components/rtm diff --git a/ccs_config b/ccs_config index 3c30d1ca7..1ebe59402 160000 --- a/ccs_config +++ b/ccs_config @@ -1 +1 @@ -Subproject commit 3c30d1ca7d2a4bee7993532b5c3955fcd4409954 +Subproject commit 1ebe59402bc19881a6d711084e27bdbe6c69149c diff --git a/components/cmeps b/components/cmeps index 5b7d76978..959e9a0b1 160000 --- a/components/cmeps +++ b/components/cmeps @@ -1 +1 @@ -Subproject commit 5b7d76978e2fdc661ec2de4ba9834b985decadc6 +Subproject commit 959e9a0b1aa3c602de4674f0553875efa8f6c1b6 From 186f8e9c98cb7eedf591419b240f24e5892fd376 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 22 Nov 2024 14:04:41 -0700 Subject: [PATCH 10/11] update cime --- .gitmodules | 2 +- cime | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 43ea4ced9..778a334c2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,7 +37,7 @@ path = cime url = https://github.com/ESMCI/cime fxDONOTUSEurl = https://github.com/ESMCI/cime - fxtag = cime6.1.29 + fxtag = cime6.1.46 fxrequired = ToplevelRequired [submodule "fms"] diff --git a/cime b/cime index 2776043f0..29aa60f99 160000 --- a/cime +++ b/cime @@ -1 +1 @@ -Subproject commit 2776043f0d20d2bc1094afeb48e0cc242b0b0407 +Subproject commit 29aa60f999caa6c57f754ef123a4a235724777de From 932a078f8c5e077b5e910b35cfc26c04593d5623 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Wed, 4 Dec 2024 07:15:40 -0700 Subject: [PATCH 11/11] update mom_interface --- .gitmodules | 4 ++-- components/mom | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 778a334c2..2c46ca554 100644 --- a/.gitmodules +++ b/.gitmodules @@ -77,10 +77,10 @@ [submodule "mom"] path = components/mom - url = https://github.com/jedwards4b/MOM_interface + url = https://github.com/ESCOMP/MOM_interface fxDONOTUSEurl = https://github.com/ESCOMP/MOM_interface fxrequired = ToplevelRequired - fxtag = mi_241104_ncar_241101_use_atan2_for_nvhpc01 + fxtag = mi_241122 [submodule "cism"] path = components/cism diff --git a/components/mom b/components/mom index 9b84901bf..2ece02120 160000 --- a/components/mom +++ b/components/mom @@ -1 +1 @@ -Subproject commit 9b84901bf530b1f10e68ab9d124949472595e120 +Subproject commit 2ece021207d3a235ac13bc3e68fc04d9050fde75