Browse Source

change Jenkinsfile - tests stage now run consistently

MrOzOn 5 năm trước cách đây
mục cha
commit
1a3bad6f21
1 tập tin đã thay đổi với 3 bổ sung12 xóa
  1. 3 12
      Jenkinsfile

+ 3 - 12
Jenkinsfile

@@ -35,18 +35,9 @@ pipeline {
             }
         }
         stage('Test') {
-            failFast true
-            parallel {
-                stage('default') {
-                    steps {
-                        echo './gradlew testDebugUnitTest'
-                    }
-                }
-                stage('jacoco') {
-                    steps {
-                        sh './gradlew jacocoTestDebugUnitTestReport'
-                    }
-                }
+            steps {
+                sh './gradlew testDebugUnitTest'
+                sh './gradlew jacocoTestDebugUnitTestReport'
             }
         }
         stage('Signing APK') {