This is an automated email from the ASF dual-hosted git repository.
masahi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new a3a155c [skip ci][ci] Fix bad merge after moving to templated
Jenkinsfile (#10792)
a3a155c is described below
commit a3a155cb8566582b03e160bd52d70924c9d7e384
Author: driazati <[email protected]>
AuthorDate: Fri Mar 25 12:59:50 2022 -0700
[skip ci][ci] Fix bad merge after moving to templated Jenkinsfile (#10792)
Co-authored-by: driazati <[email protected]>
---
jenkins/Jenkinsfile.j2 | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index 75c2ebe..f9fcc4a 100644
--- a/jenkins/Jenkinsfile.j2
+++ b/jenkins/Jenkinsfile.j2
@@ -719,7 +719,7 @@ stage('Test') {
Utils.markStageSkippedForConditional('python3: i386')
}
},
- 'python3: arm': {
+ 'python3: aarch64': {
if (!skip_ci && is_docs_only_build != 1) {
node('ARM') {
ws({{ m.per_exec_ws('tvm/ut-python-arm') }}) {
@@ -738,7 +738,10 @@ stage('Test') {
script: "${docker_run} ${ci_arm}
./tests/scripts/task_python_topi.sh",
label: 'Run TOPI tests',
)
- // sh "${docker_run} ${ci_arm}
./tests/scripts/task_python_integration.sh"
+ sh (
+ script: "${docker_run} ${ci_arm}
./tests/scripts/task_python_integration.sh",
+ label: 'Run CPU integration tests',
+ )
}
} finally {
junit 'build/pytest-results/*.xml'