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/06/07 16:28:12 UTC

[tvm] branch areusch/freeze-dependencies updated (68c5808a91 -> 5b9687d91a)

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 68c5808a91 ecr_pull
     new bedf2be0dd Add to path
     new 5b9687d91a build again

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/Dockerfile.ci_arm     | 1 +
 docker/Dockerfile.ci_cpu     | 1 +
 docker/Dockerfile.ci_gpu     | 1 +
 docker/Dockerfile.ci_hexagon | 1 +
 docker/Dockerfile.ci_i386    | 1 +
 docker/Dockerfile.ci_lint    | 1 +
 docker/Dockerfile.ci_qemu    | 1 +
 docker/Dockerfile.ci_wasm    | 1 +
 jenkins/Jenkinsfile.j2       | 6 +++---
 10 files changed, 15 insertions(+), 7 deletions(-)


[tvm] 01/02: Add to path

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 bedf2be0dd991fbeb006302c53b2dd6287cbadb3
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Tue Jun 7 09:21:32 2022 -0700

    Add to path
---
 docker/Dockerfile.ci_arm     | 1 +
 docker/Dockerfile.ci_cpu     | 1 +
 docker/Dockerfile.ci_gpu     | 1 +
 docker/Dockerfile.ci_hexagon | 1 +
 docker/Dockerfile.ci_i386    | 1 +
 docker/Dockerfile.ci_lint    | 1 +
 docker/Dockerfile.ci_qemu    | 1 +
 docker/Dockerfile.ci_wasm    | 1 +
 8 files changed, 8 insertions(+)

diff --git a/docker/Dockerfile.ci_arm b/docker/Dockerfile.ci_arm
index 11973aeca5..d6cf6c9b64 100644
--- a/docker/Dockerfile.ci_arm
+++ b/docker/Dockerfile.ci_arm
@@ -48,6 +48,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY install/ubuntu_install_cmake_source.sh /install/ubuntu_install_cmake_source.sh
 RUN bash /install/ubuntu_install_cmake_source.sh
diff --git a/docker/Dockerfile.ci_cpu b/docker/Dockerfile.ci_cpu
index 7eb8e2083f..f5c8291376 100644
--- a/docker/Dockerfile.ci_cpu
+++ b/docker/Dockerfile.ci_cpu
@@ -28,6 +28,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY python/build/pyproject.toml /install/python/pyproject.toml
 COPY python/build/poetry.lock /install/python/poetry.lock
diff --git a/docker/Dockerfile.ci_gpu b/docker/Dockerfile.ci_gpu
index b14c73a4e8..f09ba9d19f 100644
--- a/docker/Dockerfile.ci_gpu
+++ b/docker/Dockerfile.ci_gpu
@@ -37,6 +37,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY install/ubuntu_install_cmake_source.sh /install/ubuntu_install_cmake_source.sh
 RUN bash /install/ubuntu_install_cmake_source.sh
diff --git a/docker/Dockerfile.ci_hexagon b/docker/Dockerfile.ci_hexagon
index e2a534920d..6fc7a40dd2 100644
--- a/docker/Dockerfile.ci_hexagon
+++ b/docker/Dockerfile.ci_hexagon
@@ -32,6 +32,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu2004_install_python.sh /install/ubuntu2004_install_python.sh
 RUN bash /install/ubuntu2004_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 # Rust env (build early; takes a while)
 COPY install/ubuntu_install_rust.sh /install/ubuntu_install_rust.sh
diff --git a/docker/Dockerfile.ci_i386 b/docker/Dockerfile.ci_i386
index 25eba3d7c4..3eb1a71093 100644
--- a/docker/Dockerfile.ci_i386
+++ b/docker/Dockerfile.ci_i386
@@ -37,6 +37,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY install/ubuntu_install_llvm.sh /install/ubuntu_install_llvm.sh
 RUN bash /install/ubuntu_install_llvm.sh
diff --git a/docker/Dockerfile.ci_lint b/docker/Dockerfile.ci_lint
index 6da29415f2..b48f52b3dd 100644
--- a/docker/Dockerfile.ci_lint
+++ b/docker/Dockerfile.ci_lint
@@ -26,6 +26,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY python/build/pyproject.toml /install/python/pyproject.toml
 COPY python/build/poetry.lock /install/python/poetry.lock
diff --git a/docker/Dockerfile.ci_qemu b/docker/Dockerfile.ci_qemu
index ee3e522d7e..e1292a61c0 100644
--- a/docker/Dockerfile.ci_qemu
+++ b/docker/Dockerfile.ci_qemu
@@ -29,6 +29,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY python/build/pyproject.toml /install/python/pyproject.toml
 COPY python/build/poetry.lock /install/python/poetry.lock
diff --git a/docker/Dockerfile.ci_wasm b/docker/Dockerfile.ci_wasm
index 243c3d53f7..b4394c6c7a 100644
--- a/docker/Dockerfile.ci_wasm
+++ b/docker/Dockerfile.ci_wasm
@@ -26,6 +26,7 @@ ENV TVM_VENV /venv/apache-tvm-py3.7
 COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
 COPY install/ubuntu1804_install_python.sh /install/ubuntu1804_install_python.sh
 RUN bash /install/ubuntu1804_install_python.sh
+ENV PATH ${TVM_VENV}/bin:$PATH
 
 COPY python/build/pyproject.toml /install/python/pyproject.toml
 COPY python/build/poetry.lock /install/python/poetry.lock


[tvm] 02/02: build again

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 5b9687d91a6c03e636bc76a56a56e6b1c0595376
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Tue Jun 7 09:28:03 2022 -0700

    build again
---
 Jenkinsfile            | 8 ++++----
 jenkins/Jenkinsfile.j2 | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 65d9551aa4..c8f0b4ae2f 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-06-06T18:03:14.896384
+// Generated at 2022-06-07T09:27:54.770959
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
@@ -3046,9 +3046,9 @@ cancel_previous_build()
 
 prepare()
 
-//if (rebuild_docker_images) {
-//  build_docker_images()
-//}
+if (rebuild_docker_images) {
+  build_docker_images()
+}
 
 lint()
 
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index 5ba842dfc2..94e5c19b7b 100644
--- a/jenkins/Jenkinsfile.j2
+++ b/jenkins/Jenkinsfile.j2
@@ -127,9 +127,9 @@ cancel_previous_build()
 
 prepare()
 
-//if (rebuild_docker_images) {
-//  build_docker_images()
-//}
+if (rebuild_docker_images) {
+  build_docker_images()
+}
 
 lint()