File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ stage('Build') {
224
224
timeout(time : max_time, unit : ' MINUTES' ) {
225
225
sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_ci_setup.sh"
226
226
sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_python_unittest.sh"
227
- sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_python_integration.sh"
228
227
sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_python_vta_fsim.sh"
229
228
sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_python_vta_tsim.sh"
230
229
// sh "${docker_run} ${ci_cpu} ./tests/scripts/task_golang.sh"
@@ -300,6 +299,19 @@ stage('Unit Test') {
300
299
}
301
300
}
302
301
},
302
+ ' python3: CPU' : {
303
+ node(' CPU' ) {
304
+ ws(per_exec_ws(" tvm/ut-python-cpu" )) {
305
+ init_git()
306
+ unpack_lib(' cpu' , tvm_multilib_tsim)
307
+ timeout(time : max_time, unit : ' MINUTES' ) {
308
+ sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_ci_setup.sh"
309
+ sh " ${ docker_run} ${ ci_cpu} ./tests/scripts/task_python_integration.sh"
310
+ junit " build/pytest-results/*.xml"
311
+ }
312
+ }
313
+ }
314
+ },
303
315
' python3: i386' : {
304
316
node(' CPU' ) {
305
317
ws(per_exec_ws(" tvm/ut-python-i386" )) {
You can’t perform that action at this time.
0 commit comments