]> source.dussan.org Git - archiva.git/commitdiff
Deactivating upstream trigger for integration test for some time
authorMartin Stockhammer <martin_s@apache.org>
Tue, 18 Feb 2020 19:27:27 +0000 (20:27 +0100)
committerMartin Stockhammer <martin_s@apache.org>
Tue, 18 Feb 2020 19:27:27 +0000 (20:27 +0100)
Jenkinsfile-itest

index 18e3e74736b44304cf8b0a52f0b3afd2014a4c0b..a2d854d21b1b8a24d3fd5c5be0b4d15fc30695ca 100644 (file)
@@ -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,