Explorar o código

change paralell

jamesread %!s(int64=4) %!d(string=hai) anos
pai
achega
ea07ba4582
Modificáronse 1 ficheiros con 6 adicións e 10 borrados
  1. 6 10
      Jenkinsfile

+ 6 - 10
Jenkinsfile

@@ -21,16 +21,12 @@ pipeline {
         
         stage ('Post-Compile') {
             parallel { 
-                stage('Codestyle') {
-                    steps {
-                        sh 'make daemon-codestyle'
-                        sh 'make webui-codestyle'
-                    }
-                }
-                stage('UnitTests') {
-                    steps {
-                        sh 'make daemon-unittests'
-                    }
+                codeStyle: {
+					sh 'make daemon-codestyle'
+					sh 'make webui-codestyle'
+                },
+                unitTests: {
+					sh 'make daemon-unittests'
                 }
             }
         }