Skip to content

Commit

Permalink
Temporarily disable arm build/test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Morris committed Dec 3, 2020
1 parent 8fa4df2 commit 6654404
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -215,16 +215,16 @@ stage('Build') {
}
}
},
'BUILD : arm': {
node('ARM') {
ws(per_exec_ws("tvm/build-arm")) {
init_git()
sh "${docker_run} ${ci_arm} ./tests/scripts/task_config_build_arm.sh"
make(ci_arm, 'build', '-j4')
pack_lib('arm', tvm_multilib)
}
}
},
// 'BUILD : arm': {
// node('ARM') {
// ws(per_exec_ws("tvm/build-arm")) {
// init_git()
// sh "${docker_run} ${ci_arm} ./tests/scripts/task_config_build_arm.sh"
// make(ci_arm, 'build', '-j4')
// pack_lib('arm', tvm_multilib)
// }
// }
// },
'BUILD: QEMU': {
node('CPU') {
ws(per_exec_ws("tvm/build-qemu")) {
Expand Down Expand Up @@ -269,19 +269,19 @@ stage('Unit Test') {
}
}
},
'python3: arm': {
node('ARM') {
ws(per_exec_ws("tvm/ut-python-arm")) {
init_git()
unpack_lib('arm', tvm_multilib)
timeout(time: max_time, unit: 'MINUTES') {
sh "${docker_run} ${ci_arm} ./tests/scripts/task_ci_python_setup.sh"
sh "${docker_run} ${ci_arm} ./tests/scripts/task_python_unittest.sh"
// sh "${docker_run} ${ci_arm} ./tests/scripts/task_python_integration.sh"
}
}
}
},
// 'python3: arm': {
// node('ARM') {
// ws(per_exec_ws("tvm/ut-python-arm")) {
// init_git()
// unpack_lib('arm', tvm_multilib)
// timeout(time: max_time, unit: 'MINUTES') {
// sh "${docker_run} ${ci_arm} ./tests/scripts/task_ci_python_setup.sh"
// sh "${docker_run} ${ci_arm} ./tests/scripts/task_python_unittest.sh"
// // sh "${docker_run} ${ci_arm} ./tests/scripts/task_python_integration.sh"
// }
// }
// }
// },
'java: GPU': {
node('GPU') {
ws(per_exec_ws("tvm/ut-java")) {
Expand Down

0 comments on commit 6654404

Please sign in to comment.