o little script for andy/kenny/me for testing

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@497243 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-01-17 23:31:24 +00:00
parent ce96238b4e
commit 4c4b85767a
1 changed files with 29 additions and 0 deletions

29
its/run-its.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
[ -z $LOCAL_REPO ] && echo && echo "Set your LOCAL_REPO envar!" && echo && exit
echo "Using $LOCAL_REPO ..."
mv ${LOCAL_REPO} ${LOCAL_REPO}.its
mvn -N install
(
cd core-integration-testing-plugins
mvn install
ret=$?; if [ $ret != 0 ]; then echo "Failed to install IT plugins" && exit $ret; fi
)
(
cd core-integration-testing-support
mvn install
ret=$?; if [ $ret != 0 ]; then echo "Failed to install IT support artifacts." && exit $ret; fi
)
(
cd core-integration-tests
mvn clean test
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
)
mv ${LOCAL_REPO}.its ${LOCAL_REPO}