Skip to content

Commit

Permalink
Add ci_riscv to docker image rebuild (#131)
Browse files Browse the repository at this point in the history
Follow-up to apache/tvm#12230
  • Loading branch information
areusch authored Aug 2, 2022
1 parent c378e50 commit 3aa3329
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion jenkins/JenkinsFile-rebuild-docker-images
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,28 @@ pipeline {
} // post
} // stage

stage('ci-riscv') {
agent { node { label 'CPU' } }
steps {
ws(per_exec_ws("tvm/docker-ci-riscv")) {
cleanWs();
init_git()
dir('tvm'){
sh "${docker_build} ci_riscv --tag ${TVM_DOCKER_TAG}"
}

upload_to_docker_hub("ci_riscv");

}
} // steps
post {
always {
cleanup_docker_image("ci_riscv");
cleanWs();
}
} // post
} // stage

} // parallel
} // stage: Build
} // stages
Expand All @@ -341,7 +363,7 @@ pipeline {
[$class: 'StringParameterValue', name: 'tlcpack_staging_tag', value: "${TVM_DOCKER_TAG}"]
]

discordSend description: "New images published on DockerHub with tag `${TVM_DOCKER_TAG}`. Use `docker pull tlcpackstaging/<image_type>:${TVM_DOCKER_TAG}` to download the images. Image types: `ci_arm`, `ci_cpu`, `ci_gpu`, `ci_i386`, `ci_lint`, `ci_qemu`, `ci_wasm`, `ci_hexagon`.",
discordSend description: "New images published on DockerHub with tag `${TVM_DOCKER_TAG}`. Use `docker pull tlcpackstaging/<image_type>:${TVM_DOCKER_TAG}` to download the images. Image types: `ci_arm`, `ci_cpu`, `ci_gpu`, `ci_i386`, `ci_lint`, `ci_qemu`, `ci_wasm`, `ci_hexagon`, `ci_riscv`.",
link: "https://hub.docker.com/u/tlcpackstaging/",
result: currentBuild.currentResult,
title: "${JOB_NAME}",
Expand Down

0 comments on commit 3aa3329

Please sign in to comment.