Skip to content

Commit

Permalink
[RUST][CI] Add rust frontend tests in Jenkins (#2375)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsanmok authored and tqchen committed Jan 9, 2019
1 parent 4e055c0 commit e36265b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ stage('Build') {
timeout(time: max_time, unit: 'MINUTES') {
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_cpp_unittest.sh"
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_python_vta.sh"
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_rust.sh"
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_golang.sh"
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_python_unittest.sh"
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_python_integration.sh"
Expand Down Expand Up @@ -209,6 +208,17 @@ stage('Unit Test') {
}
}
}
},
'rust: CPU': {
node('CPU') {
ws('workspace/tvm/ut-rust') {
init_git()
unpack_lib('cpu', tvm_multilib)
timeout(time: max_time, unit: 'MINUTES') {
sh "${docker_run} tvmai/ci-cpu ./tests/scripts/task_rust.sh"
}
}
}
}
}

Expand Down

0 comments on commit e36265b

Please sign in to comment.