You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2019/11/26 05:30:26 UTC

[incubator-tvm-test] 15/15: Update script

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

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm-test.git

commit c103fe389896facab93c5f70108d5bfc39a6c456
Author: tqchen <tq...@gmail.com>
AuthorDate: Mon Nov 25 21:29:56 2019 -0800

    Update script
---
 Jenkinsfile | 27 ---------------------------
 1 file changed, 27 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 23f243e..2dd9595 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -94,30 +94,3 @@ stage("Build") {
     }
   }
 }
-
-stage('Deploy') {
-    node('CPU') {
-      ws('workspace/tvm-web/deploy') {
-        if (env.BRANCH_NAME == "master") {
-           unpack_lib('website', 'website.tgz')
-           dir('_site') {
-             checkout scm
-             sshagent(['tvm-web']) {
-               sh "git checkout asf-site"
-               sh "git fetch && git reset --hard origin/asf-site"
-             }
-             sh "rm -rf *"
-           }
-           sh "tar xf website.tgz"
-           dir('_site') {
-             sh "git add --all && git commit -am 'nightly build'"
-           }
-           sshagent(['tvm-web']) {
-             dir('_site') {
-               sh "git push origin asf-site"
-             }
-           }
-        }
-      }
-    }
-}
\ No newline at end of file