diff --git a/Jenkinsfile b/Jenkinsfile index 7471ee1e66..ce085b46b5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,6 +21,7 @@ pipeline { } } stage('Instrumented tests') { + when { expression { false } } environment { BROWSERSTACK = credentials('android-browserstack') } @@ -33,6 +34,7 @@ pipeline { } } stage('JaCoCo report') { + when { expression { false } } steps { script { echo 'JaCoCo report' @@ -41,6 +43,7 @@ pipeline { } } stage('Sonarqube') { + when { expression { false } } environment { GIT_BRANCH = "${env.GIT_BRANCH}" // Jenkinsfile considers empty value ('') as null