We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17c8aa commit b0dff56Copy full SHA for b0dff56
scripts/github-actions/ci-build.sh
@@ -4,6 +4,9 @@ set -eufo pipefail
4
# We want to see what's going on
5
set -x
6
7
+# Define heap size for GitHub Actions runner
8
+HEAP_SIZE="-Xmx4g"
9
+
10
# Default to auto if no parameter is provided
11
CACHE_RESULTS="auto"
12
@@ -17,6 +20,7 @@ fi
17
20
# shellcheck disable=SC2046
18
21
bazel test --config=rbe-ci --build_tests_only \
19
22
--keep_going --flaky_test_attempts=2 \
23
+ --host_jvm_args=${HEAP_SIZE} \
24
--cache_test_results=${CACHE_RESULTS} \
25
//... -- $(cat .skipped-tests | tr '\n' ' ')
26
0 commit comments