Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add the bridge loan functionality to allow RRFS/RTMA works while waiting related PRs to be merged #243

Merged
merged 1 commit into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Externals.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,14 @@ hash = ecef5a2
local_path = src/rrfs_utl
required = True

[rrfs_bridgeloan]
protocol = git
repo_url = https://github.com/NOAA-GSL/rrfs_bridgeloan.git
# Specify either a branch name or a hash but not both.
# branch = main
hash = 7d95e89
local_path = src/rrfs_bridgeloan
required = True

[externals_description]
schema_version = 1.0.0
2 changes: 2 additions & 0 deletions manage_externals/checkout_externals
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ if __name__ == '__main__':
ARGS = manic.checkout.commandline_arguments()
try:
RET_STATUS, _ = manic.checkout.main(ARGS)
if os.path.isfile('src/rrfs_bridgeloan/bridge_loan.sh'):
os.system('src/rrfs_bridgeloan/bridge_loan.sh')
if os.path.isfile('regional_workflow/Init.sh'):
os.system('regional_workflow/Init.sh')
sys.exit(RET_STATUS)
Expand Down