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

Resolving bugs with build and clone processes #151

Merged
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
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# 2 - configure; build; install
# 4 - optional, run unit tests

module purge
set -eu
START=$(date +%s)
dir_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
1 change: 1 addition & 0 deletions docs/build_and_test.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## 1.Clone RDASApp
If running on Orion/Hercules, you will need to run `module load git-lfs` before cloning.
```
git clone --recurse-submodules https://github.com/NOAA-EMC/RDASApp.git
```
Expand Down
2 changes: 1 addition & 1 deletion rrfs-test/scripts/link_mpasjedi_expr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cp ${RDASApp}/rrfs-test/ush/mpasjedi_spread.py .
mkdir -p data
cd data
mkdir -p bumploc bkg obs ens ref
ln -snf ${RDASApp}/fix/bumploc/${BUMPLOC} bumploc/
ln -snf ${RDASApp}/fix/bumploc/${BUMPLOC} bumploc/${BUMPLOC}
SamuelDegelia-NOAA marked this conversation as resolved.
Show resolved Hide resolved
ln -snf ${RDASApp}/fix/expr_data/${exprname}/bkg/restart.2024-05-27_00.00.00.nc .
ln -snf ${RDASApp}/fix/expr_data/${exprname}/bkg/restart.2024-05-27_00.00.00.nc static.nc
ln -snf ${RDASApp}/fix/expr_data/${exprname}/obs/* obs/
Expand Down
Loading