From 682497b21038f1e5c0b642e28bd25e6c1de0b214 Mon Sep 17 00:00:00 2001 From: Mehrdad Hessar Date: Wed, 3 Aug 2022 09:42:10 -0700 Subject: [PATCH] Rename ci_qemu to ci_cortexm (#132) --- jenkins/JenkinsFile-rebuild-docker-images | 12 ++++++------ jenkins/JenkinsFile-validate-docker-images | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/jenkins/JenkinsFile-rebuild-docker-images b/jenkins/JenkinsFile-rebuild-docker-images index cd95c6d..7e43a61 100644 --- a/jenkins/JenkinsFile-rebuild-docker-images +++ b/jenkins/JenkinsFile-rebuild-docker-images @@ -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 @@ -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/:${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/:${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}", diff --git a/jenkins/JenkinsFile-validate-docker-images b/jenkins/JenkinsFile-validate-docker-images index 0e0a624..dd173f1 100644 --- a/jenkins/JenkinsFile-validate-docker-images +++ b/jenkins/JenkinsFile-validate-docker-images @@ -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}"] ] @@ -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 @@ -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(); } @@ -200,7 +200,7 @@ pipeline { } // stages post { success { - discordSend description: "Validated images published on DockerHub with tag `${DOCKER_VALIDATED_TAG}`. Use `docker pull tlcpackstaging/:${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/:${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}",