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

areusch pushed a commit to branch areusch/freeze-dependencies
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit f135506d34daab3226970eb20633fd56beec1068
Author: Andrew Reusch <[email protected]>
AuthorDate: Thu May 12 17:51:58 2022 -0700

    more jenkinsfile fixes
---
 Jenkinsfile            | 10 +++++-----
 jenkins/Jenkinsfile.j2 |  8 ++++----
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 746364823c..f1915d1864 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -45,7 +45,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 2022-05-13T17:17:54.888804
+// Generated at 2022-05-13T17:18:01.320189
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the 
regex as needed. -->
@@ -332,9 +332,9 @@ def build_base_image(arch_name) {
     script: "docker/build-base-images.sh ${arch_name}",
     label: "Build base image for ${arch_name}"
   )
-  archiveArtifacts artifacts: 'docker/build/base_${arch_name}/**', 
fingerprint: true
-  def files = findFiles(glob: 'docker/build/base_${arch_name}/**')
-  pack_lib('${arch_name}-lockfiles', files.join(', '))
+  archiveArtifacts artifacts: "docker/build/base_${arch_name}/**", 
fingerprint: true
+  def files = findFiles(glob: "docker/build/base_${arch_name}/**")
+  pack_lib("${arch_name}-lockfiles", files.join(', '))
 }
 
 def build_image(arch_name, image_name) {
@@ -343,7 +343,7 @@ def build_image(arch_name, image_name) {
     script: 'git log -1 --format=\'%h\''
   ).trim()
   def full_name = 
"${image_name}:${env.BRANCH_NAME}-${hash}-${env.BUILD_NUMBER}"
-  unpack_lib('${arch_name}-lockfiles')
+  unpack_lib("${arch_name}-lockfiles")
   sh(
     script: "${docker_build} ${image_name} --spec ${full_name}",
     label: 'Build docker image'
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index 7a9046037c..9adf85f5f6 100644
--- a/jenkins/Jenkinsfile.j2
+++ b/jenkins/Jenkinsfile.j2
@@ -249,9 +249,9 @@ def build_base_image(arch_name) {
     script: "docker/build-base-images.sh ${arch_name}",
     label: "Build base image for ${arch_name}"
   )
-  archiveArtifacts artifacts: 'docker/build/base_${arch_name}/**', 
fingerprint: true
-  def files = findFiles(glob: 'docker/build/base_${arch_name}/**')
-  pack_lib('${arch_name}-lockfiles', files.join(', '))
+  archiveArtifacts artifacts: "docker/build/base_${arch_name}/**", 
fingerprint: true
+  def files = findFiles(glob: "docker/build/base_${arch_name}/**")
+  pack_lib("${arch_name}-lockfiles", files.join(', '))
 }
 
 def build_image(arch_name, image_name) {
@@ -260,7 +260,7 @@ def build_image(arch_name, image_name) {
     script: 'git log -1 --format=\'%h\''
   ).trim()
   def full_name = 
"${image_name}:${env.BRANCH_NAME}-${hash}-${env.BUILD_NUMBER}"
-  unpack_lib('${arch_name}-lockfiles')
+  unpack_lib("${arch_name}-lockfiles")
   sh(
     script: "${docker_build} ${image_name} --spec ${full_name}",
     label: 'Build docker image'

Reply via email to