[CI] Move golang tests to the end (#4164)
authorTianqi Chen <tqchen@users.noreply.github.com>
Mon, 21 Oct 2019 03:29:32 +0000 (20:29 -0700)
committerZhi <5145158+zhiics@users.noreply.github.com>
Mon, 21 Oct 2019 03:29:32 +0000 (20:29 -0700)
Jenkinsfile

index 9cf6e4f..a66c96f 100644 (file)
@@ -202,10 +202,10 @@ stage('Build') {
         make(ci_cpu, 'build', '-j2')
         pack_lib('cpu', tvm_lib)
         timeout(time: max_time, unit: 'MINUTES') {
-          sh "${docker_run} ${ci_cpu} ./tests/scripts/task_golang.sh"
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_python_unittest.sh"
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_python_integration.sh"
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_python_vta.sh"
+          sh "${docker_run} ${ci_cpu} ./tests/scripts/task_golang.sh"
         }
       }
     }