You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/04/09 15:19:37 UTC

[incubator-heron] branch nicknezis/bazel-2 updated (2dc3ab9 -> 2b1e295)

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

nicknezis pushed a change to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git.


    from 2dc3ab9  Testing with 50 attempts
     new 0be70b8  Updated for Bazel 3.0.0
     new 2b1e295  Putting it back to original value

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:
 integration_test/src/python/test_runner/main.py | 2 +-
 tools/docker/bazel.rc                           | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


[incubator-heron] 02/02: Putting it back to original value

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 2b1e295a98485e670c97a44984e4d3c100450ed8
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Thu Apr 9 11:19:18 2020 -0400

    Putting it back to original value
---
 integration_test/src/python/test_runner/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration_test/src/python/test_runner/main.py b/integration_test/src/python/test_runner/main.py
index b263aa3..a09803a 100644
--- a/integration_test/src/python/test_runner/main.py
+++ b/integration_test/src/python/test_runner/main.py
@@ -33,7 +33,7 @@ from heron.common.src.python.utils import log
 # The location of default configure file
 DEFAULT_TEST_CONF_FILE = "integration_test/src/python/test_runner/resources/test.json"
 
-RETRY_ATTEMPTS = 50
+RETRY_ATTEMPTS = 25
 #seconds
 RETRY_INTERVAL = 10
 


[incubator-heron] 01/02: Updated for Bazel 3.0.0

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 0be70b8644d1170dc0e9c6db84bdb10c55a04efb
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Wed Apr 8 16:04:13 2020 -0400

    Updated for Bazel 3.0.0
---
 tools/docker/bazel.rc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/docker/bazel.rc b/tools/docker/bazel.rc
index f6bb4ea..26d0445 100644
--- a/tools/docker/bazel.rc
+++ b/tools/docker/bazel.rc
@@ -28,7 +28,8 @@ test --test_strategy=standalone
 # Workaround https://github.com/bazelbuild/bazel/issues/3645
 # Bazel doesn't calculate the memory ceiling correctly when running under Docker.
 # Limit Bazel to consuming 4G ram and 2 cores.
-build --local_resources=4096,2.0,1.0
+build --local_ram_resources=4096
+build --local_cpu_resources=2
 
 # Echo all the configuration settings and their source
  build --announce_rc
\ No newline at end of file