mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
02ee6897bb
* Add bazel-zig-cc for a hermetic cc toolchain * gazelle * Remove llvm * remove wl * Add new URLs for renamed repo * gazelle * Update to v2.0.0-rc1 * bump to rc2 * Proof of concept multi-arch containers for beacon-chain * TODO and gaz * Refactor to starlark macro. Use a version of bash that actually works * progress * gaz * multirun to use multiple repositories, but doesn't work with tag stamping * Revert "multirun to use multiple repositories, but doesn't work with tag stamping" This reverts commit 93afa76f65daeba9426c3d714dabf94410fa3a0c. * Add targets for all supported docker images and temporarily set the repository to prysm-dev for testing * use a temporary fix to see if it works on buildkite * Revert "use a temporary fix to see if it works on buildkite" This reverts commit ddc79283caa6b39c8aff4c62772728832d0dfe64. * testing a cURL fix * try fix with my fix * Revert "try fix with my fix" This reverts commit bb7521bf4712abb6779bbf3132e64911b751db65. * Revert "testing a cURL fix" This reverts commit 8a4782110f8853cb7278baf507621bd6684572b1. * try tip of main branch for rules_oci * update to 1.2.0 * Update rules_oci to v1.3.0 * Update rule_oci to 1.3.4 * Disable experimental_remote_downloader * Remove extra zig bazelrc * Move image deps to its own file * PR feedback --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
56 lines
2.2 KiB
Plaintext
56 lines
2.2 KiB
Plaintext
# The following flags enable the remote cache so action results can be shared
|
|
# across machines, developers, and workspaces.
|
|
#
|
|
# This config is loaded from https://github.com/bazelbuild/bazel-toolchains/blob/master/bazelrc/latest.bazelrc
|
|
#build:remote-cache --remote_timeout=3600
|
|
#build:remote-cache --spawn_strategy=standalone
|
|
#build:remote-cache --strategy=Javac=standalone
|
|
#build:remote-cache --strategy=Closure=standalone
|
|
#build:remote-cache --strategy=Genrule=standalone
|
|
|
|
# Prysm specific remote-cache properties.
|
|
#build:remote-cache --disk_cache=
|
|
build:remote-cache --remote_download_toplevel
|
|
build:remote-cache --remote_cache=grpc://bazel-remote-cache:9092
|
|
# Does not work with rules_oci. See https://github.com/bazel-contrib/rules_oci/issues/292
|
|
#build:remote-cache --experimental_remote_downloader=grpc://bazel-remote-cache:9092
|
|
build:remote-cache --remote_local_fallback
|
|
build:remote-cache --experimental_remote_cache_async
|
|
build:remote-cache --experimental_remote_merkle_tree_cache
|
|
build:remote-cache --experimental_action_cache_store_output_metadata
|
|
build:remote-cache --experimental_remote_cache_compression
|
|
# Enforce stricter environment rules, which eliminates some non-hermetic
|
|
# behavior and therefore improves both the remote cache hit rate and the
|
|
# correctness and repeatability of the build.
|
|
build:remote-cache --incompatible_strict_action_env=true
|
|
|
|
build --experimental_use_hermetic_linux_sandbox
|
|
|
|
# Import workspace options.
|
|
import %workspace%/.bazelrc
|
|
|
|
startup --host_jvm_args=-Xmx4g --host_jvm_args=-Xms2g
|
|
build --experimental_strict_action_env
|
|
build --sandbox_tmpfs_path=/tmp
|
|
build --verbose_failures
|
|
build --announce_rc
|
|
build --show_progress_rate_limit=5
|
|
build --curses=no --color=no
|
|
build --keep_going
|
|
build --test_output=errors
|
|
build --flaky_test_attempts=5
|
|
# Disabled race detection due to unstable test results under constrained environment build kite
|
|
# build --features=race
|
|
|
|
# Better caching
|
|
build:nostamp --nostamp
|
|
|
|
# Build metadata
|
|
build --build_metadata=ROLE=CI
|
|
build --build_metadata=REPO_URL=https://github.com/prysmaticlabs/prysm.git
|
|
build --workspace_status_command=./hack/workspace_status_ci.sh
|
|
|
|
# Buildbuddy
|
|
build --bes_results_url=https://app.buildbuddy.io/invocation/
|
|
build --bes_backend=grpcs://remote.buildbuddy.io
|