forked from keycloak/keycloak-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
travis-run-tests.sh
executable file
·39 lines (34 loc) · 1.61 KB
/
travis-run-tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash -e
if [ $1 == "group1" ]; then
for i in `mvn -q --also-make exec:exec -Dexec.executable="pwd" | awk -F '/' '{if (NR > 1) print $NF}'`;
do
# FIXME Workaround to skip Angular.js app on Travis CI while we figure out the best way to fix the issues with Selenium
if [ "$i" = "app-angular2" -o "$i" = "app-authz-uma-photoz" -o "$i" = "photoz-authz-policy" -o "$i" = "photoz-html5-client" -o "$i" = "photoz-authz-policy" -o "$i" = "photoz-restful-api" -o "$i" = "photoz-testsuite" ]; then
continue
fi
mvn -B -s maven-settings.xml clean install -Pwildfly-managed -Denforcer.skip=true -f $i
done
fi
if [ $1 == "group2" ]; then
mvn -B -s maven-settings.xml test -Pwildfly-managed -f action-token-authenticator </dev/null
mvn -B -s maven-settings.xml test -Pwildfly-managed -f action-token-required-action </dev/null
fi
if [ $1 == "group3" ]; then
cd fuse && mvn -B -s ../maven-settings.xml clean install -Pfuse-server
fi
if [ $1 == "group4" ]; then
cd app-authz-springboot && mvn -B -s ../maven-settings.xml clean test -Pspring-boot
cd app-authz-rest-springboot && mvn -B -s ../maven-settings.xml clean test -Pspring-boot
cd ../service-springboot-rest && mvn -B -s ../maven-settings.xml clean test -Pspring-boot
mvn spring-boot:run&
cd ../app-springboot
mvn -B -s ../maven-settings.xml clean test -Pspring-boot
fi
if [ $1 == "group5" ]; then
mvn -B -s maven-settings.xml test -Pkeycloak-remote -f user-storage-jpa
mvn -B -s maven-settings.xml test -Pkeycloak-remote -f user-storage-simple
fi
if [ $1 == "group6" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then
./productize.sh
exit 0
fi