mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-18 17:08:29 +00:00
Use remote downloader during fetch
This commit is contained in:
parent
9f0644e272
commit
d6d5f1c191
5
.bazelrc
5
.bazelrc
@ -16,8 +16,9 @@ build:toplevel --config=inmemory
|
|||||||
build:toplevel --remote_download_outputs=toplevel
|
build:toplevel --remote_download_outputs=toplevel
|
||||||
|
|
||||||
build:remote --config=toplevel
|
build:remote --config=toplevel
|
||||||
build:remote --remote_cache=grpc://buildcache.default.svc.cluster.local:9092
|
build:remote --remote_cache=grpc://buildcache.default.svc.cluster.local:9092 --experimental_remote_downloader=grpc://buildcache.default.svc.cluster.local:9092
|
||||||
build:remote --experimental_remote_downloader=grpc://buildcache.default.svc.cluster.local:9092
|
query:remote --remote_cache=grpc://buildcache.default.svc.cluster.local:9092 --experimental_remote_downloader=grpc://buildcache.default.svc.cluster.local:9092
|
||||||
|
fetch:remote --remote_cache=grpc://buildcache.default.svc.cluster.local:9092 --experimental_remote_downloader=grpc://buildcache.default.svc.cluster.local:9092
|
||||||
build:remote --noremote_upload_local_results
|
build:remote --noremote_upload_local_results
|
||||||
build:remote --remote_timeout=3600
|
build:remote --remote_timeout=3600
|
||||||
build:remote --bes_results_url=https://bz.build.resf.org/invocation/
|
build:remote --bes_results_url=https://bz.build.resf.org/invocation/
|
||||||
|
@ -4,13 +4,15 @@ export SILO_KEY=rocky86-peridot-prow-1
|
|||||||
export REMOTE_DEF=cache-silo-key=$SILO_KEY
|
export REMOTE_DEF=cache-silo-key=$SILO_KEY
|
||||||
|
|
||||||
CI=${CI:-}
|
CI=${CI:-}
|
||||||
|
QUERY_FLAGS=""
|
||||||
FLAGS="--show_progress_rate_limit=5 --color=yes --ui_actions_shown=30 --terminal_columns=140 --show_timestamps --verbose_failures --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_guard_against_concurrent_changes"
|
FLAGS="--show_progress_rate_limit=5 --color=yes --ui_actions_shown=30 --terminal_columns=140 --show_timestamps --verbose_failures --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_guard_against_concurrent_changes"
|
||||||
|
|
||||||
if [[ -n ${CI} ]]; then
|
if [[ -n ${CI} ]]; then
|
||||||
FLAGS="--config=ci $FLAGS"
|
FLAGS="--config=ci $FLAGS"
|
||||||
|
QUERY_FLAGS="--config=ci"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BAZEL_B="bazel $SOPTIONS build $FLAGS --remote_default_exec_properties=$REMOTE_DEF"
|
BAZEL_B="bazel $SOPTIONS build $FLAGS --remote_default_exec_properties=$REMOTE_DEF"
|
||||||
BAZEL_R="bazel $SOPTIONS run $FLAGS --remote_default_exec_properties=$REMOTE_DEF"
|
BAZEL_R="bazel $SOPTIONS run $FLAGS --remote_default_exec_properties=$REMOTE_DEF"
|
||||||
BAZEL_T="bazel $SOPTIONS test $FLAGS --remote_default_exec_properties=$REMOTE_DEF --test_arg=-test.v --flaky_test_attempts=3 --build_tests_only --test_output=errors"
|
BAZEL_T="bazel $SOPTIONS test $FLAGS --remote_default_exec_properties=$REMOTE_DEF --test_arg=-test.v --flaky_test_attempts=3 --build_tests_only --test_output=errors"
|
||||||
BAZEL_QR="bazel $SOPTIONS query --keep_going --noshow_progress"
|
BAZEL_QR="bazel $SOPTIONS query $QUERY_FLAGS --keep_going --noshow_progress"
|
||||||
|
Loading…
Reference in New Issue
Block a user