You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2022/05/13 00:22:30 UTC

[tvm] branch areusch/freeze-dependencies updated (589bb3b7fc -> 633f0e40ef)

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

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


    from 589bb3b7fc fix build tag
     new ad22a06536 regenerate Jenkinsfile
     new 633f0e40ef fix build tag x2

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile                 | 8 ++++----
 docker/build-base-images.sh | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


[tvm] 01/02: regenerate Jenkinsfile

Posted by ar...@apache.org.
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 ad22a06536664e637d6f00efb4f78c44a4c4382f
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu May 12 17:18:01 2022 -0700

    regenerate Jenkinsfile
---
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 3883c8b81e..571755386c 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-12T16:23:43.245024
+// Generated at 2022-05-12T17:17:57.947606
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
@@ -398,11 +398,11 @@ if (rebuild_docker_images) {
 
     // TODO in a follow up PR: Find ecr tag and use in subsequent builds
     parallel(
-       'arm64': {
+       'aarch64': {
         node('ARM') {
           timeout(time: max_time, unit: 'MINUTES') {
             init_git()
-            build_base_image('arm64')
+            build_base_image('aarch64')
           }
         }
       },
@@ -429,7 +429,7 @@ if (rebuild_docker_images) {
         node('ARM') {
           timeout(time: max_time, unit: 'MINUTES') {
             init_git()
-            build_image('arm64', 'ci_arm')
+            build_image('aarch64', 'ci_arm')
           }
         }
       },


[tvm] 02/02: fix build tag x2

Posted by ar...@apache.org.
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 633f0e40ef1e37bd3121c40e3b8a0a77829c4798
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu May 12 17:22:00 2022 -0700

    fix build tag x2
---
 docker/build-base-images.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/build-base-images.sh b/docker/build-base-images.sh
index e26a25b863..0ea35cd451 100755
--- a/docker/build-base-images.sh
+++ b/docker/build-base-images.sh
@@ -20,7 +20,7 @@ for docker_file in "${IMAGES[@]}"; do
     $(dirname $0)/build.sh "base_${arch}"  # --platform "${arch}"
 
     # NOTE: working dir inside docker is repo root.
-    BUILD_TAG=$(echo "${BUILD_TAG:-tvm}" | sed 's/-/--/g' | sed 's/%/-/g')
+    BUILD_TAG=$(echo "${BUILD_TAG:-tvm}" | sed 's/-/--/g' | sed 's/%/-/g' | tr 'A-Z' 'a-z')
     $(dirname $0)/bash.sh -i "${BUILD_TAG}.base_${arch}:latest" python3 docker/freeze_deps.py \
                  --ci-constraints=docker/ci-constraints.txt \
                  --gen-requirements-py=python/gen_requirements.py \