Skip to content

Commit

Permalink
Remove --rrfs option from test/build.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielabdi-noaa committed Aug 14, 2022
1 parent 2bed9be commit c3e93aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions devbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ OPTIONS
build with verbose output
TARGETS
all = builds the default list of apps (also not passing any target does the same)
Or any combinations of (ufs, ufs_utils, upp, gsi, rrfs_utils)
default = builds the default list of apps (also not passing any target does the same)
all = builds all apps
Or any combinations of (default, ufs, ufs_utils, upp, gsi, rrfs_utils)
NOTE: This script is for internal developer use only;
See User's Guide for detailed build instructions
Expand Down Expand Up @@ -149,12 +150,15 @@ while :; do
--verbose|-v) VERBOSE=true ;;
--verbose=?*|--verbose=) usage_error "$1 argument ignored." ;;
# targets
all) ;;
default) ;;
all) DEFAULT_BUILD=false; BUILD_UFS="on";
BUILD_UFS_UTILS="on"; BUILD_UPP="on";
BUILD_GSI="on"; BUILD_RRFS_UTILS="on";;
ufs) DEFAULT_BUILD=false; BUILD_UFS="on" ;;
ufs_utils) DEFAULT_BUILD=false; BUILD_UFS_UTILS="on" ;;
upp) DEFAULT_BUILD=false; BUILD_UPP="on" ;;
gsi) DEFAULT_BUILD=false; BUILD_GSI="on" ;;
rrfs_utils) DEFAULT_BUILD=false; BUILD_GSI="on" ;;
rrfs_utils) DEFAULT_BUILD=false; BUILD_RRFS_UTILS="on" ;;
# unknown
-?*|?*) usage_error "Unknown option $1" ;;
*) break
Expand Down
2 changes: 1 addition & 1 deletion test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ declare -a executables_rrfs_utl_created=( adjust_soiltq.exe \
EXEC_DIR=${BIN_DIR}/bin
if [ $build_it -eq 0 ] ; then
./devbuild.sh --platform=${machine} --compiler=${compiler} --build-dir=${BUILD_DIR} --install-dir=${BIN_DIR} \
--clean --rrfs || fail "Build ${machine} ${compiler} FAILED"
--clean all || fail "Build ${machine} ${compiler} FAILED"
fi # End of skip build for testing

#-----------------------------------------------------------------------
Expand Down

0 comments on commit c3e93aa

Please sign in to comment.