Skip to content

Commit

Permalink
Rename ci_qemu to ci_cortexm (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadh authored Aug 3, 2022
1 parent 3aa3329 commit 682497b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions jenkins/JenkinsFile-rebuild-docker-images
Original file line number Diff line number Diff line change
Expand Up @@ -283,23 +283,23 @@ pipeline {
} // post
} // stage

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

upload_to_docker_hub("ci_qemu");
upload_to_docker_hub("ci_cortexm");

}
} // steps
post {
always {
cleanup_docker_image("ci_qemu");
cleanup_docker_image("ci_cortexm");
cleanWs();
}
} // post
Expand Down Expand Up @@ -363,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`, `ci_riscv`.",
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_cortexm`, `ci_wasm`, `ci_hexagon`, `ci_riscv`.",
link: "https://hub.docker.com/u/tlcpackstaging/",
result: currentBuild.currentResult,
title: "${JOB_NAME}",
Expand Down
8 changes: 4 additions & 4 deletions jenkins/JenkinsFile-validate-docker-images
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pipeline {
[$class: 'StringParameterValue', name: 'ci_gpu_param', value: "${DOCKERHUB_USER}/ci_gpu:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_wasm_param', value: "${DOCKERHUB_USER}/ci_wasm:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_i386_param', value: "${DOCKERHUB_USER}/ci_i386:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_qemu_param', value: "${DOCKERHUB_USER}/ci_qemu:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_cortexm_param', value: "${DOCKERHUB_USER}/ci_cortexm:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_arm_param', value: "${DOCKERHUB_USER}/ci_arm:${DOCKER_TAG}"],
[$class: 'StringParameterValue', name: 'ci_hexagon_param', value: "${DOCKERHUB_USER}/ci_hexagon:${DOCKER_TAG}"]
]
Expand All @@ -144,7 +144,7 @@ pipeline {
retag_and_upload_to_docker_hub("ci_cpu");
retag_and_upload_to_docker_hub("ci_wasm");
retag_and_upload_to_docker_hub("ci_i386");
retag_and_upload_to_docker_hub("ci_qemu");
retag_and_upload_to_docker_hub("ci_cortexm");
retag_and_upload_to_docker_hub("ci_hexagon");
}
} // steps
Expand All @@ -154,7 +154,7 @@ pipeline {
cleanup_docker_image("ci_cpu");
cleanup_docker_image("ci_wasm");
cleanup_docker_image("ci_i386");
cleanup_docker_image("ci_qemu");
cleanup_docker_image("ci_cortexm");
cleanup_docker_image("ci_hexagon");
cleanWs();
}
Expand Down Expand Up @@ -200,7 +200,7 @@ pipeline {
} // stages
post {
success {
discordSend description: "Validated images published on DockerHub with tag `${DOCKER_VALIDATED_TAG}`. Use `docker pull tlcpackstaging/<image_type>:${DOCKER_VALIDATED_TAG}` to download the images. Image types: `ci_arm`, `ci_cpu`, `ci_gpu`, `ci_i386`, `ci_lint`, `ci_qemu`, `ci_wasm`.",
discordSend description: "Validated images published on DockerHub with tag `${DOCKER_VALIDATED_TAG}`. Use `docker pull tlcpackstaging/<image_type>:${DOCKER_VALIDATED_TAG}` to download the images. Image types: `ci_arm`, `ci_cpu`, `ci_gpu`, `ci_i386`, `ci_lint`, `ci_cortexm`, `ci_wasm`.",
link: "https://hub.docker.com/u/tlcpackstaging/",
result: currentBuild.currentResult,
title: "${JOB_NAME}",
Expand Down

0 comments on commit 682497b

Please sign in to comment.