File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 12
12
parallel check : {
13
13
stage(' Check' ) {
14
14
timeout(time : 45 , unit : ' MINUTES' ) {
15
- node(' ubuntu1804 ' ) {
15
+ node(' linux ' ) {
16
16
checkout scm
17
17
try {
18
18
withEnv([" JAVA_HOME=${ tool 'jdk8'} " ]) {
33
33
jdk9 : {
34
34
stage(' JDK 9' ) {
35
35
timeout(time : 45 , unit : ' MINUTES' ) {
36
- node {
36
+ node( ' linux ' ) {
37
37
checkout scm
38
38
try {
39
39
withEnv([" JAVA_HOME=${ tool 'jdk9'} " ]) {
51
51
jdk10 : {
52
52
stage(' JDK 10' ) {
53
53
timeout(time : 45 , unit : ' MINUTES' ) {
54
- node {
54
+ node( ' linux ' ) {
55
55
checkout scm
56
56
try {
57
57
withEnv([" JAVA_HOME=${ tool 'jdk10'} " ]) {
69
69
jdk11 : {
70
70
stage(' JDK 11' ) {
71
71
timeout(time : 45 , unit : ' MINUTES' ) {
72
- node(' ubuntu1804 ' ) {
72
+ node(' linux ' ) {
73
73
checkout scm
74
74
try {
75
75
withEnv([" JAVA_HOME=${ tool 'jdk11'} " ]) {
87
87
jdk12 : {
88
88
stage(' JDK 12' ) {
89
89
timeout(time : 45 , unit : ' MINUTES' ) {
90
- node(' ubuntu1804 ' ) {
90
+ node(' linux ' ) {
91
91
checkout scm
92
92
try {
93
93
withEnv([" JAVA_HOME=${ tool 'openjdk12'} " ]) {
@@ -106,7 +106,7 @@ try {
106
106
if (currentBuild. result == ' SUCCESS' ) {
107
107
parallel artifacts : {
108
108
stage(' Deploy Artifacts' ) {
109
- node {
109
+ node( ' linux ' ) {
110
110
checkout scm
111
111
try {
112
112
withCredentials([file(credentialsId : ' spring-signing-secring.gpg' , variable : ' SIGNING_KEYRING_FILE' )]) {
@@ -130,7 +130,7 @@ try {
130
130
},
131
131
docs : {
132
132
stage(' Deploy Docs' ) {
133
- node {
133
+ node( ' linux ' ) {
134
134
checkout scm
135
135
try {
136
136
withCredentials([file(credentialsId : ' docs.spring.io-jenkins_private_ssh_key' , variable : ' DEPLOY_SSH_KEY' )]) {
You can’t perform that action at this time.
0 commit comments