Skip to content

Commit 458e137

Browse files
author
Peter
committed
updated build script to a cleaner one without android
1 parent fc02327 commit 458e137

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

core/files/travis-build.sh

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
HOME=$(dirname $0)
22
cd $HOME/../..
33

4-
modules="core web tools"
5-
for module in $modules; do
6-
echo "====== INSTALL $module ====="
7-
mvn -pl $module clean install -DskipTests=true
8-
EXIT_VAL="$?"
9-
if [[ "x$EXIT_VAL" != "x0" ]]; then
10-
exit $EXIT_VAL
11-
fi
12-
13-
echo "====== TEST $module ====="
14-
# verify necessary for failsafe, otherwise it won't fail the build!?
15-
mvn -pl $module test failsafe:integration-test verify
16-
EXIT_VAL="$?"
17-
if [[ "x$EXIT_VAL" != "x0" ]]; then
18-
exit $EXIT_VAL
19-
fi
20-
done
4+
mvn clean test verify
5+
6+
#modules="core web tools"
7+
#for module in $modules; do
8+
# echo "====== INSTALL $module ====="
9+
# mvn -pl $module clean install -DskipTests=true
10+
# EXIT_VAL="$?"
11+
# if [[ "x$EXIT_VAL" != "x0" ]]; then
12+
# exit $EXIT_VAL
13+
# fi
14+
#
15+
# echo "====== TEST $module ====="
16+
# # verify necessary for failsafe, otherwise it won't fail the build!?
17+
# mvn -pl $module test failsafe:integration-test verify
18+
# EXIT_VAL="$?"
19+
# if [[ "x$EXIT_VAL" != "x0" ]]; then
20+
# exit $EXIT_VAL
21+
# fi
22+
#done

0 commit comments

Comments
 (0)