You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ve...@apache.org on 2020/12/11 19:06:12 UTC

[tvm] branch ci-docker-staging updated: update jenkins

This is an automated email from the ASF dual-hosted git repository.

vega pushed a commit to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/ci-docker-staging by this push:
     new 04947e1  update jenkins
04947e1 is described below

commit 04947e1c1c8d10f0108a7b27ab896c85d12e3bf8
Author: Luis Vega <ve...@gmail.com>
AuthorDate: Fri Dec 11 19:04:40 2020 +0000

    update jenkins
---
 Jenkinsfile | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7021e3a..ad1d7e2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -60,9 +60,14 @@ tvm_lib = "build/libtvm.so, " + tvm_runtime
 tvm_multilib = "build/libtvm.so, " +
                "build/libvta_tsim.so, " +
                "build/libvta_fsim.so, " +
-               "3rdparty/vta-hw/apps/verilator/libverilator.so, " +
                tvm_runtime
 
+tvm_cpu_i386_lib = "build/libtvm.so, " +
+                   "build/libvta_tsim.so, " +
+                   "build/libvta_fsim.so, " +
+                   "3rdparty/vta-hw/apps/verilator/libverilator.so, " +
+                   tvm_runtime
+
 // command to start a docker container
 docker_run = 'docker/bash.sh'
 // timeout in minutes
@@ -180,7 +185,7 @@ stage('Build') {
         init_git()
         sh "${docker_run} ${ci_cpu} ./tests/scripts/task_config_build_cpu.sh"
         make(ci_cpu, 'build', '-j2')
-        pack_lib('cpu', tvm_multilib)
+        pack_lib('cpu', tvm_cpu_i386_lib)
         timeout(time: max_time, unit: 'MINUTES') {
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_ci_python_setup.sh"
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_python_unittest.sh"
@@ -212,7 +217,7 @@ stage('Build') {
         init_git()
         sh "${docker_run} ${ci_i386} ./tests/scripts/task_config_build_i386.sh"
         make(ci_i386, 'build', '-j2')
-        pack_lib('i386', tvm_multilib)
+        pack_lib('i386', tvm_cpu_i386_lib)
       }
     }
   },
@@ -260,7 +265,7 @@ stage('Unit Test') {
     node('CPU') {
       ws(per_exec_ws("tvm/ut-python-i386")) {
         init_git()
-        unpack_lib('i386', tvm_multilib)
+        unpack_lib('i386', tvm_cpu_i386_lib)
         timeout(time: max_time, unit: 'MINUTES') {
           sh "${docker_run} ${ci_i386} ./tests/scripts/task_ci_python_setup.sh"
           sh "${docker_run} ${ci_i386} ./tests/scripts/task_python_unittest.sh"
@@ -326,7 +331,7 @@ stage('Integration Test') {
     node('CPU') {
       ws(per_exec_ws("tvm/frontend-python-cpu")) {
         init_git()
-        unpack_lib('cpu', tvm_multilib)
+        unpack_lib('cpu', tvm_cpu_i386_lib)
         timeout(time: max_time, unit: 'MINUTES') {
           sh "${docker_run} ${ci_gpu} ./tests/scripts/task_ci_python_setup.sh"
           sh "${docker_run} ${ci_cpu} ./tests/scripts/task_python_frontend_cpu.sh"