Adding prepare job before running webtest

This commit is contained in:
Martin Stockhammer 2018-05-21 09:17:08 +02:00
parent 6ae9703f1d
commit 3f81c46ba0
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ pipeline {
// -fae: Fail at the end // -fae: Fail at the end
// -Dmaven.compiler.fork=true: Compile in a separate forked process // -Dmaven.compiler.fork=true: Compile in a separate forked process
// -Pci-server: Profile for CI-Server // -Pci-server: Profile for CI-Server
// -Pit-js: Run the selenium testsh // -Pit-js: Run the selenium test
sh "mvn clean install -B -U -Dmaven.test.skip=true -T2"
sh "mvn clean install -B -V -U -e -fae -Dmaven.compiler.fork=true -DmaxWaitTimeInMs=2000 -Pci-server -Pit-js -DtrimStackTrace=false -pl :archiva-webapp-test" sh "mvn clean install -B -V -U -e -fae -Dmaven.compiler.fork=true -DmaxWaitTimeInMs=2000 -Pci-server -Pit-js -DtrimStackTrace=false -pl :archiva-webapp-test"
} }