forked from NOAA-EMC/GDASApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use submodules rather than ecbuild_bundle git (NOAA-EMC#811)
This PR creates git submodules for each external JEDI library rather than using `ecbuild_bundle` to get the library source code through git. There is also a new set of scripts to automate the update process of the submodules (both an update and a git add, in separate scripts). Peppered through here are also some minor changes for CI testing that are needed due to this change + the global-workflow using submodules. --------- Co-authored-by: Guillaume Vernieres <[email protected]> Co-authored-by: RussTreadon-NOAA <[email protected]> Co-authored-by: RussTreadon-NOAA <[email protected]>
- Loading branch information
1 parent
cc4c940
commit 639ef16
Showing
58 changed files
with
436 additions
and
314 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
[submodule "sorc/jedicmake"] | ||
path = sorc/jedicmake | ||
url = https://github.com/jcsda/jedi-cmake.git | ||
[submodule "sorc/gsibec"] | ||
path = sorc/gsibec | ||
url = https://github.com/GEOS-ESM/GSIbec.git | ||
branch = develop | ||
[submodule "sorc/gsw"] | ||
path = sorc/gsw | ||
url = https://github.com/jcsda-internal/GSW-Fortran.git | ||
branch = develop | ||
[submodule "sorc/oops"] | ||
path = sorc/oops | ||
url = https://github.com/jcsda/oops.git | ||
branch = develop | ||
[submodule "sorc/vader"] | ||
path = sorc/vader | ||
url = https://github.com/jcsda/vader.git | ||
branch = develop | ||
[submodule "sorc/saber"] | ||
path = sorc/saber | ||
url = https://github.com/jcsda/saber.git | ||
branch = develop | ||
[submodule "sorc/ioda"] | ||
path = sorc/ioda | ||
url = https://github.com/jcsda/ioda.git | ||
branch = develop | ||
[submodule "sorc/ufo"] | ||
path = sorc/ufo | ||
url = https://github.com/jcsda/ufo.git | ||
branch = develop | ||
[submodule "sorc/fv3"] | ||
path = sorc/fv3 | ||
url = https://github.com/jcsda/GFDL_atmos_cubed_sphere.git | ||
branch = release-stable | ||
[submodule "sorc/femps"] | ||
path = sorc/femps | ||
url = https://github.com/jcsda/femps.git | ||
branch = develop | ||
[submodule "sorc/fv3-jedi-lm"] | ||
path = sorc/fv3-jedi-lm | ||
url = https://github.com/jcsda/fv3-jedi-linearmodel.git | ||
branch = develop | ||
[submodule "sorc/fv3-jedi"] | ||
path = sorc/fv3-jedi | ||
url = https://github.com/jcsda/fv3-jedi.git | ||
branch = develop | ||
[submodule "sorc/icepack"] | ||
path = sorc/icepack | ||
url = https://github.com/JCSDA-internal/Icepack.git | ||
branch = feature/ecbuild-new | ||
[submodule "sorc/mom6"] | ||
path = sorc/mom6 | ||
url = https://github.com/jcsda-internal/MOM6.git | ||
branch = main-ecbuild | ||
[submodule "sorc/soca"] | ||
path = sorc/soca | ||
url = https://github.com/jcsda-internal/soca.git | ||
branch = develop | ||
[submodule "sorc/iodaconv"] | ||
path = sorc/iodaconv | ||
url = https://github.com/JCSDA-internal/ioda-converters.git | ||
branch = develop | ||
[submodule "sorc/land-imsproc"] | ||
path = sorc/land-imsproc | ||
url = https://github.com/NOAA-PSL/land-IMS_proc.git | ||
branch = develop | ||
[submodule "sorc/land-jediincr"] | ||
path = sorc/land-jediincr | ||
url = https://github.com/NOAA-PSL/land-apply_jedi_incr.git | ||
branch = develop | ||
[submodule "sorc/crtm"] | ||
path = sorc/crtm | ||
url = https://github.com/jcsda/crtm.git | ||
[submodule "sorc/fms"] | ||
path = sorc/fms | ||
url = https://github.com/jcsda/fms.git | ||
branch = release-stable |
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 |
---|---|---|
|
@@ -113,7 +113,7 @@ echo "Configuring ..." | |
set -x | ||
cmake \ | ||
${CMAKE_OPTS:-} \ | ||
$dir_root | ||
$dir_root/sorc | ||
set +x | ||
|
||
# Build | ||
|
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.