Skip to content

Commit

Permalink
update build_all.sh argument list (#1428)
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTreadon-NOAA authored Dec 26, 2024
1 parent be0cf45 commit eec2e1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ci/run_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ if [[ $TEST_WORKFLOW == 1 ]]; then
gdasapp_dir=$workflow_dir/sorc/gdas.cd

build_cmd_dir=$workflow_dir/sorc
build_cmd="./build_all.sh -ug &>> log.build"
build_cmd="./build_all.sh gfs gsi gdas"
build_dir=$workflow_dir/build
else
export BUILD_JOBS=8

gdasapp_dir=$repodir

build_cmd_dir=$gdasapp_dir
build_cmd="./build.sh -t $TARGET &>> log.build"
build_cmd="./build.sh -t $TARGET"
build_dir=$gdasapp_dir/build
fi

Expand All @@ -74,7 +74,7 @@ echo "---------------------------------------------------" >> $outfile
cd $build_cmd_dir
module purge
rm -rf log.build
$build_cmd
$build_cmd &>> log.build
build_status=$?
if [ $build_status -eq 0 ]; then
echo "Build: *SUCCESS*" >> $outfile
Expand Down
2 changes: 1 addition & 1 deletion prototypes/gen_prototype.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [[ $BUILD == 'YES' ]]; then
cd gdas.cd
git checkout $GDASHASH
cd ../
./build_all.sh
./build_all.sh gfs gsi gdas
./link_workflow.sh
fi

Expand Down

0 comments on commit eec2e1b

Please sign in to comment.