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:14:44 UTC

[tvm] branch areusch/freeze-dependencies updated (095d87f346 -> 589bb3b7fc)

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 095d87f346 fixup! Rename arm to aarch64, add bootstrap requirements.
     new 34f16292e8 fixup! Rename i386 to x86
     new 589bb3b7fc fix build tag

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:
 docker/Dockerfile.base_x86  | 2 +-
 docker/build-base-images.sh | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


[tvm] 02/02: fix build tag

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 589bb3b7fc0a5509bea53338dfe3a734bb3e39b8
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu May 12 17:14:25 2022 -0700

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

diff --git a/docker/build-base-images.sh b/docker/build-base-images.sh
index fa56c37e57..e26a25b863 100755
--- a/docker/build-base-images.sh
+++ b/docker/build-base-images.sh
@@ -20,7 +20,8 @@ for docker_file in "${IMAGES[@]}"; do
     $(dirname $0)/build.sh "base_${arch}"  # --platform "${arch}"
 
     # NOTE: working dir inside docker is repo root.
-    $(dirname $0)/bash.sh -i "tvm.base_${arch}:latest" python3 docker/freeze_deps.py \
+    BUILD_TAG=$(echo "${BUILD_TAG:-tvm}" | sed 's/-/--/g' | sed 's/%/-/g')
+    $(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 \
                  --template-pyproject-toml=pyproject.toml \


[tvm] 01/02: fixup! Rename i386 to x86

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 34f16292e8c516ff71fb85442bc4591b70408199
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu May 12 17:13:19 2022 -0700

    fixup! Rename i386 to x86
---
 docker/Dockerfile.base_x86 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Dockerfile.base_x86 b/docker/Dockerfile.base_x86
index ef9fafdfbc..5572e0f031 100644
--- a/docker/Dockerfile.base_x86
+++ b/docker/Dockerfile.base_x86
@@ -32,6 +32,6 @@ ENV RUSTUP_HOME /opt/rust
 ENV CARGO_HOME /opt/rust
 ENV PATH $PATH:$CARGO_HOME/bin
 
-COPY python/bootstrap-requirements.txt /install/python/bootstrap-requirements.txt
+COPY python/bootstrap-requirements-x86.txt /install/python/bootstrap-requirements.txt
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh