Skip to content

Commit

Permalink
add recursive clones everywhere for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryMartin-NOAA committed Dec 18, 2023
1 parent 6ba88ff commit f0feb8f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci/driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ for pr in $open_pr_list; do
cd $GDAS_CI_ROOT/PR/$pr

# clone copy of repo
git clone $repo_url
git clone --recursive $repo_url
cd GDASApp

# checkout pull request
Expand Down
2 changes: 1 addition & 1 deletion ci/gw_driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ for pr in $open_pr_list; do
cd $GDAS_CI_ROOT/workflow/PR/$pr

# clone global workflow develop branch
git clone $workflow_url
git clone --recursive $workflow_url

# run checkout script for all other components
cd $GDAS_CI_ROOT/workflow/PR/$pr/global-workflow/sorc
Expand Down
2 changes: 1 addition & 1 deletion ci/stable_driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mkdir -p $stableroot/$datestr
cd $stableroot/$datestr

# clone global workflow develop branch
git clone $workflow_url
git clone --recursive $workflow_url

# run checkout script for all other components
cd $stableroot/$datestr/global-workflow/sorc
Expand Down
2 changes: 1 addition & 1 deletion ci/validation/validation_driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ mkdir -p $GDAS_CI_ROOT/validation/$today
cd $GDAS_CI_ROOT/validation/$today

# clone copy of repo
git clone $repo_url
git clone --recursive $repo_url
cd GDASApp

# load modules
Expand Down

0 comments on commit f0feb8f

Please sign in to comment.