소스 검색

Deactivating upstream trigger for integration test for some time

pull/60/head
Martin Stockhammer 4 년 전
부모
커밋
38f43434dd
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      Jenkinsfile-itest

+ 10
- 0
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,

Loading…
취소
저장