forked from openkylin/vc
23 lines
559 B
Bash
23 lines
559 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
case "$1" in
|
||
|
Experimental|Nightly|Continuous)
|
||
|
export dashboard_model=$1
|
||
|
case "$2" in
|
||
|
None|Debug|Release|RelWithDebug|RelWithDebInfo|MinSizeRel)
|
||
|
export build_type=$2
|
||
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: $0 <model> [<build type>]"
|
||
|
echo
|
||
|
echo "Possible arguments for model are Nightly, Continuous, or Experimental."
|
||
|
echo "Build type may be one of: None Debug Release RelWithDebug RelWithDebInfo MinSizeRel."
|
||
|
echo
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
ctest -S "`dirname $0`/test.cmake"
|