aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile-itest
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile-itest')
-rw-r--r--Jenkinsfile-itest10
1 files changed, 10 insertions, 0 deletions
diff --git a/Jenkinsfile-itest b/Jenkinsfile-itest
index 18e3e7473..a2d854d21 100644
--- a/Jenkinsfile-itest
+++ b/Jenkinsfile-itest
@@ -60,6 +60,11 @@ pipeline {
}
stage('Test htmlunit') {
+ when {
+ not {
+ triggeredBy 'UpstreamCause'
+ }
+ }
steps {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk,
@@ -104,6 +109,11 @@ pipeline {
// Uses a docker container that is started by script. Maybe we could use the docker functionality
// of the jenkins pipeline in the future.
stage('Test chrome') {
+ when {
+ not {
+ triggeredBy 'UpstreamCause'
+ }
+ }
steps {
timeout(120) {
withCredentials([[$class : 'UsernamePasswordMultiBinding', credentialsId: DOCKERHUB_CREDS,