-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/coupled_ic
- Loading branch information
Showing
28 changed files
with
683 additions
and
1,475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
help([[ | ||
Load environment to run GFS workflow setup scripts on Jet | ||
]]) | ||
|
||
load(pathJoin("rocoto", "1.3.3")) | ||
|
||
if (mode() == "unload") then | ||
-- `execute` delays commands until last, but we need conda deactivated | ||
-- before unloading miniconda. `print` (bizarrely) still executes the | ||
-- command, but does it immediately. The semicolon is necessary | ||
-- because otherwise other commands get tacked onto the same line. | ||
print("conda deactivate;") | ||
end | ||
|
||
-- Temporary until official hpc-stack is updated | ||
prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") | ||
load(pathJoin("miniconda3", "4.12.0")) | ||
if (mode() == "load") then | ||
execute{cmd="conda activate ufswm", modeA={"load"}} | ||
end | ||
|
||
whatis("Description: GFS run setup environment") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
help([[ | ||
Load environment to run GFS workflow setup scripts on S4 | ||
]]) | ||
|
||
load(pathJoin("miniconda", "3.8-s4")) | ||
load(pathJoin("rocoto","1.3.5")) | ||
load(pathJoin("git","2.30.0")) | ||
|
||
whatis("Description: GFS run setup environment") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
help([[ | ||
Load environment to run GFS workflow ci scripts on WCOSS2 | ||
]]) | ||
|
||
load(pathJoin("git","2.29.0")) | ||
|
||
prepend_path("MODULEPATH", "/apps/ops/test/nco/modulefiles/core") | ||
load(pathJoin("rocoto","1.3.5")) | ||
|
||
whatis("Description: GFS run ci top-level sripts environment") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.