mirror of https://github.com/apache/archiva.git
Deactivating upstream trigger for integration test for some time
This commit is contained in:
parent
276e0b1d19
commit
38f43434dd
|
@ -60,6 +60,11 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Test htmlunit') {
|
stage('Test htmlunit') {
|
||||||
|
when {
|
||||||
|
not {
|
||||||
|
triggeredBy 'UpstreamCause'
|
||||||
|
}
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
timeout(120) {
|
timeout(120) {
|
||||||
withMaven(maven: buildMvn, jdk: buildJdk,
|
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
|
// Uses a docker container that is started by script. Maybe we could use the docker functionality
|
||||||
// of the jenkins pipeline in the future.
|
// of the jenkins pipeline in the future.
|
||||||
stage('Test chrome') {
|
stage('Test chrome') {
|
||||||
|
when {
|
||||||
|
not {
|
||||||
|
triggeredBy 'UpstreamCause'
|
||||||
|
}
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
timeout(120) {
|
timeout(120) {
|
||||||
withCredentials([[$class : 'UsernamePasswordMultiBinding', credentialsId: DOCKERHUB_CREDS,
|
withCredentials([[$class : 'UsernamePasswordMultiBinding', credentialsId: DOCKERHUB_CREDS,
|
||||||
|
|
Loading…
Reference in New Issue