slawekjaranowski commented on code in PR #172:
URL: 
https://github.com/apache/maven-integration-testing/pull/172#discussion_r899521416


##########
Jenkinsfile:
##########
@@ -0,0 +1,63 @@
+#!groovy
+
+pipeline {
+  agent any
+  // save some io during the build
+  options { durabilityHint('PERFORMANCE_OPTIMIZED') }
+  
+  stages {
+    stage("Parallel Stage") {
+      parallel {
+        stage("Build / Test - mvn latest - JDK8 - ubuntu") {
+          agent { node { label 'ubuntu' } }
+          steps {
+              timeout( time: 180, unit: 'MINUTES' ) {
+                mavenBuild( "jdk_1.8_latest", "maven_latest")
+            }
+          }
+        }
+        stage("Build / Test - mvn latest - JDK11 - ubuntu") {
+          agent { node { label 'ubuntu' } }
+          steps {
+              timeout( time: 180, unit: 'MINUTES' ) {
+                mavenBuild( "jdk_11_latest", "maven_latest")
+            }
+          }
+        }
+        stage("Build / Test - mvn latest - JDK8 - windowx") {
+          agent { node { label 'ubuntu' } }
+          steps {

Review Comment:
   ? name for windows ... but node for ubuntu



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to