File tree 1 file changed +1
-33
lines changed
1 file changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -9,44 +9,12 @@ pipeline {
9
9
options {
10
10
disableConcurrentBuilds()
11
11
buildDiscarder(logRotator(numToKeepStr : ' 14' ))
12
- quietPeriod(300 )
12
+ quietPeriod(10 )
13
13
}
14
14
15
15
stages {
16
16
stage(" Docker images" ) {
17
17
parallel {
18
- stage(' Publish JDK 17 + MongoDB 4.4' ) {
19
- when {
20
- changeset " ci/openjdk8-mongodb-4.4/**"
21
- }
22
- agent { label ' data' }
23
- options { timeout(time : 30 , unit : ' MINUTES' ) }
24
-
25
- steps {
26
- script {
27
- def image = docker. build(" springci/spring-data-rest-openjdk8-with-mongodb-4.4" , " ci/openjdk8-mongodb-4.4/" )
28
- docker. withRegistry(' ' , ' hub.docker.com-springbuildmaster' ) {
29
- image. push()
30
- }
31
- }
32
- }
33
- }
34
- stage(' Publish JDK 11 + MongoDB 4.4' ) {
35
- when {
36
- changeset " ci/openjdk11-mongodb-4.4/**"
37
- }
38
- agent { label ' data' }
39
- options { timeout(time : 30 , unit : ' MINUTES' ) }
40
-
41
- steps {
42
- script {
43
- def image = docker. build(" springci/spring-data-rest-openjdk11-with-mongodb-4.4" , " ci/openjdk8-mongodb-4.4/" )
44
- docker. withRegistry(' ' , ' hub.docker.com-springbuildmaster' ) {
45
- image. push()
46
- }
47
- }
48
- }
49
- }
50
18
stage(' Publish JDK 17/ + MongoDB 4.4' ) {
51
19
when {
52
20
changeset " ci/openjdk17-mongodb-4.4/**"
You can’t perform that action at this time.
0 commit comments