This is an automated email from the ASF dual-hosted git repository.
moreau pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-vta.git
The following commit(s) were added to refs/heads/main by this push:
new b61fe13 [CI] Fix build on main (#25)
b61fe13 is described below
commit b61fe1329cd7813852de443c525f6aa99b32df3a
Author: Tianqi Chen <[email protected]>
AuthorDate: Fri Apr 16 14:50:41 2021 -0400
[CI] Fix build on main (#25)
* [CI] Fix build on main
* Increase jenkins timeout
---
Jenkinsfile | 2 +-
tests/scripts/task_tvm_clean.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 8bca45d..33b16f3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,7 +29,7 @@ ci_i386 = "tvmai/ci-i386:v0.52"
// NOTE: docker container provides an extra layer of isolation
docker_run = "tests/scripts/docker_bash.sh"
// timeout in minutes
-max_time = 60
+max_time = 240
// initialize source codes
def init_git() {
diff --git a/tests/scripts/task_tvm_clean.sh b/tests/scripts/task_tvm_clean.sh
index e34ad06..97dd4bf 100755
--- a/tests/scripts/task_tvm_clean.sh
+++ b/tests/scripts/task_tvm_clean.sh
@@ -16,4 +16,4 @@
# specific language governing permissions and limitations
# under the License.
echo "Cleanup data on " $1 " ... "
-cd $1 && rm -rf CMake* && cd -
+cd $1 && rm -rf standalone_crt && rm -rf host_standalone_crt && rm -rf CMake*
&& cd ..