From c6b72a9b4a376ba0e45dade597f3bc8251ead5a2 Mon Sep 17 00:00:00 2001 From: tqchen Date: Sun, 20 Oct 2019 18:42:03 -0700 Subject: [PATCH] [CI] Move golang tests to the end --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9cf6e4f01275..a66c96f3396e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } }