Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumevernieres committed Jul 8, 2024
1 parent 95a8b6c commit 03f6064
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ci/run_gw_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ usage() {
echo
echo " -d Run build and ctest for clone in <directory>"
echo " -o Path to output message detailing results of CI tests"
echo " -t run the tier-2 testing, default is OFF"
echo " -t run the tier-2 testing, default is false"
echo " -h display this message and quit"
echo
exit 1
}

# ==============================================================================
while getopts "d:o:h" opt; do
do_tier2=false
while getopts "d:o:h:t:" opt; do
case $opt in
d)
repodir=$OPTARG
Expand All @@ -25,14 +26,15 @@ while getopts "d:o:h" opt; do
outfile=$OPTARG
;;
t)
do_tier2=${OPTARG:-false}
do_tier2=$OPTARG
;;
h|\?|:)
usage
;;
esac
done

echo "do_tier2: $do_tier2"
exit
# ==============================================================================
# start output file
echo "Automated Global-Workflow GDASApp Testing Results:" > $outfile
Expand Down

0 comments on commit 03f6064

Please sign in to comment.