Skip to content

Commit ccd47a4

Browse files
author
dustinswales
committed
Merge branch 'main' of https://github.com/NCAR/ccpp-scm into feature/containerized_ci
2 parents 2faa334 + 95addf5 commit ccd47a4

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.github/workflows/ci_run_scm_DEPHY.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
#######################################################################################
6767
- name: Cache bacio library v2.4.1
6868
id: cache-bacio-fortran
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
with:
7171
path: /home/runner/bacio
7272
key: cache-bacio-fortran-${{matrix.fortran-compiler}}-${{matrix.build-type}}-key
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: Cache SP-library v2.3.3
8585
id: cache-sp-fortran
86-
uses: actions/cache@v4
86+
uses: actions/cache@v5
8787
with:
8888
path: /home/runner/NCEPLIBS-sp
8989
key: cache-sp-fortran-${{matrix.fortran-compiler}}-${{matrix.build-type}}-key
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Cache w3emc library v2.9.2
102102
id: cache-w3emc-fortran
103-
uses: actions/cache@v4
103+
uses: actions/cache@v5
104104
with:
105105
path: /home/runner/myw3emc
106106
key: cache-w3emc-fortran-${{matrix.fortran-compiler}}-${{matrix.build-type}}-key

.github/workflows/ci_run_scm_ufs_replay.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: sudo apt-get update
3333

3434
- name: Cache conda
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/conda_pkgs_dir
3838
key: conda-pkgs
@@ -52,7 +52,7 @@ jobs:
5252
#######################################################################################
5353

5454
- name: Cache UWM regression test output.
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
with:
5757
path: ${dir_rt_cache}
5858
key: ufs-rt-files
@@ -61,15 +61,15 @@ jobs:
6161
run: |
6262
if test ! -d "${dir_rt_cache}"; then
6363
mkdir -p ${dir_rt_cache} && cd ${dir_rt_cache}
64-
wget https://dtcenter.ucar.edu/ccpp/rt/ufs_rts_scmreplay_ci.tar
65-
tar -xvf ufs_rts_scmreplay_ci.tar
66-
ls ${dir_rt_cache}
64+
wget -q https://github.com/NCAR/ccpp-scm/releases/download/v7.0.1/ufs_rts_scmreplay_ci.tar.gz
65+
tar -xvf ufs_rts_scmreplay_ci.tar.gz
66+
ls ${dir_rt_cache}/data_new
6767
fi
6868
6969
- name: Create UFS-replay case.
7070
run: |
7171
cd ${SCM_ROOT}/scm/etc/scripts/
72-
./UFS_forcing_ensemble_generator.py -d ${dir_rt_cache}/ --C_RES 192 -dt 360 -n control_c192 -lons 300 -lats 34 -sc
72+
./UFS_forcing_ensemble_generator.py -d ${dir_rt_cache}/data_new --C_RES 192 -dt 360 -n control_c192 -lons 99.844 -lats 36.749 -sc
7373
7474
#######################################################################################
7575
# Done

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[submodule "ccpp-framework"]
22
path = ccpp/framework
33
url = https://github.com/NCAR/ccpp-framework
4-
branch = main
4+
branch = develop
55
[submodule "ccpp-physics"]
66
path = ccpp/physics
77
url = https://github.com/NCAR/ccpp-physics

ccpp/framework

Submodule framework updated 117 files

scm/etc/scripts/UFS_forcing_ensemble_generator.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def main():
8787

8888
###########################################################################
8989
#
90-
# Set longitude/latitude
90+
# Set longitude/latitude
9191
#
9292
###########################################################################
9393
if (args.nensmembers):
@@ -144,7 +144,7 @@ def main():
144144
print(" Using -tile [] -is [] -js [] (e.g. -tile 5 -is 5 6 7 -js 40 40 40)")
145145
exit()
146146
# end if
147-
147+
148148
###########################################################################
149149
#
150150
# Create SCM case configuration (etc/case_config) file.
@@ -190,7 +190,7 @@ def main():
190190

191191
# What is the surface type? (get from SCM input file)
192192
dataset = xr.open_dataset(file_scminput)
193-
sfc_type = int(np.round_(dataset.slmsk.values[0]))
193+
sfc_type = int(np.round(dataset.slmsk.values[0]))
194194

195195
# Create case_config file(s)
196196
fileOUT = "../../etc/case_config/"+case_name+".nml"
@@ -210,7 +210,7 @@ def main():
210210

211211
# Add case to dictionary to be used by run_scm.py
212212
run_list.append({"case": case_name, "suite": args.suite})
213-
213+
214214
#
215215
count = count + 1
216216
# end if

scm/src/CCPP_typedefs.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,7 @@
27582758
[ccpp-table-properties]
27592759
name = CCPP_typedefs
27602760
type = module
2761-
relative_path = ../../ccpp/physics/physics
2761+
dependencies_path = ../../ccpp/physics/physics
27622762
dependencies = hooks/machine.F,photochem/module_ozphys.F90
27632763
dependencies = Radiation/RRTMG/radlw_param.f,Radiation/RRTMG/radsw_param.f
27642764

scm/src/GFS_typedefs.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10618,7 +10618,7 @@
1061810618
[ccpp-table-properties]
1061910619
name = GFS_typedefs
1062010620
type = module
10621-
relative_path = ../../ccpp/physics/physics
10621+
dependencies_path = ../../ccpp/physics/physics
1062210622
dependencies = hooks/machine.F,hooks/physcons.F90
1062310623
dependencies = Radiation/RRTMG/radlw_param.f,Radiation/RRTMG/radsw_param.f
1062410624
dependencies = MP/TEMPO/TEMPO/module_mp_tempo_params.F90

0 commit comments

Comments
 (0)