make the local link build fast and run the test only if asked #1588 (#1671)

* make the local link build fast and run the test only if asked #1588

* demo core doesn't exist

* link after install

* move in after success matrix build and install scripts
This commit is contained in:
Eugenio Romano
2017-03-23 10:54:49 +00:00
committed by Mario Romano
parent 2bedae8db5
commit 1661d58765
21 changed files with 92 additions and 70 deletions

View File

@@ -37,18 +37,19 @@ eval OPTIONS=$1
while [[ $1 == -* ]]; do
case "$1" in
-l|--link) link; shift;;
-*) shift;;
-*) shift;;
esac
done
while [[ $OPTIONS == -* ]]; do
shift $(expr $OPTIND - 1 )
while [[ $1 == -* ]]; do
case "$OPTIONS" in
-h|--help|-\?) show_help; exit 0;;
-i|--install) install; shift;;
-u|--update) update; shift;;
-c|--cleanInstall) cleanInstall; shift;;
-*) echo "invalid option: $1" 1>&2; show_help; exit 1;;
-*) shift;;
esac
done