This is an automated email from the ASF dual-hosted git repository.

driazati 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 a9f572efae fix: deploy ci (#14607)
a9f572efae is described below

commit a9f572efaeca41ddc6544256a44685217e8c515b
Author: Brian Yoonjae Kim <86014359+naut-br...@users.noreply.github.com>
AuthorDate: Thu Apr 13 16:23:29 2023 -0700

    fix: deploy ci (#14607)
---
 ci/jenkins/generated/docker_jenkinsfile.groovy | 6 +++---
 ci/jenkins/generated/gpu_jenkinsfile.groovy    | 4 ++--
 ci/jenkins/templates/utils/macros.j2           | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ci/jenkins/generated/docker_jenkinsfile.groovy 
b/ci/jenkins/generated/docker_jenkinsfile.groovy
index 70099bb607..d13b24c0f3 100644
--- a/ci/jenkins/generated/docker_jenkinsfile.groovy
+++ b/ci/jenkins/generated/docker_jenkinsfile.groovy
@@ -60,7 +60,7 @@
 // 'python3 jenkins/generate.py'
 // Note: This timestamp is here to ensure that updates to the Jenkinsfile are
 // always rebased on main before merging:
-// Generated at 2023-04-05T10:53:33.841974
+// Generated at 2023-04-12T10:38:06.713545
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // These are set at runtime from data in ci/jenkins/docker-images.yml, update
@@ -630,7 +630,7 @@ def deploy() {
       parallel(
   'Upload built Docker images': {
     if (env.DEPLOY_DOCKER_IMAGES == 'yes' && rebuild_docker_images && 
upstream_revision != null) {
-      node(node_type) {
+      node('CPU') {
         ws("workspace/exec_${env.EXECUTOR_NUMBER}/tvm/deploy-docker") {
           timeout(time: max_time, unit: 'MINUTES') {
             init_git()
@@ -675,7 +675,7 @@ def deploy() {
   },
   'Tag tlcpackstaging to tlcpack': {
     if (env.DEPLOY_DOCKER_IMAGES == 'yes') {
-      node(node_type) {
+      node('CPU') {
         ws("workspace/exec_${env.EXECUTOR_NUMBER}/tvm/tag-images") {
           timeout(time: max_time, unit: 'MINUTES') {
             init_git()
diff --git a/ci/jenkins/generated/gpu_jenkinsfile.groovy 
b/ci/jenkins/generated/gpu_jenkinsfile.groovy
index 621609b165..56867303ca 100644
--- a/ci/jenkins/generated/gpu_jenkinsfile.groovy
+++ b/ci/jenkins/generated/gpu_jenkinsfile.groovy
@@ -60,7 +60,7 @@
 // 'python3 jenkins/generate.py'
 // Note: This timestamp is here to ensure that updates to the Jenkinsfile are
 // always rebased on main before merging:
-// Generated at 2023-04-06T08:57:35.093228
+// Generated at 2023-04-12T10:38:06.835649
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // These are set at runtime from data in ci/jenkins/docker-images.yml, update
@@ -1418,7 +1418,7 @@ def deploy() {
       parallel(
   'Deploy Docs': {
     if (env.DOCS_DEPLOY_ENABLED == 'yes') {
-      node(node_type) {
+      node('CPU') {
         ws("workspace/exec_${env.EXECUTOR_NUMBER}/tvm/deploy-docs") {
           timeout(time: max_time, unit: 'MINUTES') {
             init_git()
diff --git a/ci/jenkins/templates/utils/macros.j2 
b/ci/jenkins/templates/utils/macros.j2
index 6dcb791c1d..c96331333f 100644
--- a/ci/jenkins/templates/utils/macros.j2
+++ b/ci/jenkins/templates/utils/macros.j2
@@ -120,7 +120,7 @@ test()
 {% macro deploy_step(name, feature_flag, ws) %}
   '{{ name }}': {
     if ({{ feature_flag }}) {
-      node(node_type) {
+      node('CPU') {
         ws({{ per_exec_ws(ws) }}) {
           timeout(time: max_time, unit: 'MINUTES') {
             {{ caller() | indent(width=10) | trim }}

Reply via email to