You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by se...@apache.org on 2020/08/24 01:35:29 UTC

[bigtop] branch master updated: BIGTOP-3389. Extend timeout for installing protobuf and R packages. (#660)

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

sekikn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ec8896  BIGTOP-3389. Extend timeout for installing protobuf and R packages. (#660)
8ec8896 is described below

commit 8ec8896b635dca7b4fd2d811c57728a17d43a994
Author: Kengo Seki <se...@apache.org>
AuthorDate: Mon Aug 24 10:35:19 2020 +0900

    BIGTOP-3389. Extend timeout for installing protobuf and R packages. (#660)
---
 bigtop_toolchain/manifests/protobuf.pp | 3 ++-
 bigtop_toolchain/manifests/renv.pp     | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/bigtop_toolchain/manifests/protobuf.pp b/bigtop_toolchain/manifests/protobuf.pp
index 45b3dde..4358687 100644
--- a/bigtop_toolchain/manifests/protobuf.pp
+++ b/bigtop_toolchain/manifests/protobuf.pp
@@ -37,6 +37,7 @@ class bigtop_toolchain::protobuf {
      cwd => "/usr/src/$protobuf8dir",
      command => "/usr/src/$protobuf8dir/configure --prefix=/usr/local --disable-shared && /usr/bin/make install",
      creates => "/usr/local/bin/protoc",
-     require => EXEC["download protobuf"]
+     require => EXEC["download protobuf"],
+     timeout => 3000
   }
 }
diff --git a/bigtop_toolchain/manifests/renv.pp b/bigtop_toolchain/manifests/renv.pp
index 9ab1441..86aa2a6 100644
--- a/bigtop_toolchain/manifests/renv.pp
+++ b/bigtop_toolchain/manifests/renv.pp
@@ -49,6 +49,6 @@ class bigtop_toolchain::renv {
   exec { 'install_r_packages':
     cwd     => "/usr/bin",
     command => "/usr/bin/R -e \"install.packages(c('devtools', 'evaluate', 'rmarkdown', 'knitr', 'roxygen2', 'testthat', 'e1071'), repos = 'http://cran.us.r-project.org')\"",
-    timeout => 1800
+    timeout => 3000
   }
 }