Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nmattia committed Oct 25, 2024
1 parent 51c7046 commit 323f6d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bazel/conf/.bazelrc.build
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test --test_env=RUST_BACKTRACE=full

test:precommit --build_tests_only --test_tag_filters="smoke"

build:systest --build_tag_filters=
build:systest --build_tag_filters="-fuzz_test"
run:systest --remote_upload_local_results=true
test:systest --remote_upload_local_results=true --test_output=streamed --test_tag_filters=

Expand All @@ -81,7 +81,7 @@ test --sandbox_tmpfs_path=/tmp

# Run all tests once by default, run flaky tests up to 3 times in CI.
test --flaky_test_attempts=1
test:ci --flaky_test_attempts=default
#test:ci --flaky_test_attempts=default


# So that developers can build in debug mode.
Expand Down
8 changes: 4 additions & 4 deletions bazel/conf/.bazelrc.internal
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ build:ci --bes_upload_mode=fully_async
build:ci --build_event_binary_file=bazel-bep.pb --profile=profile.json

# DFINITY internal remote cache setup
build --remote_cache=bazel-remote.idx.dfinity.network
build --remote_cache=grpc://10.107.199.28:9092
build --experimental_remote_cache_async
build --experimental_remote_cache_compression # If enabled, compress/decompress cache blobs with zstd.
build --remote_timeout=60s # Default is also 60s but we set it explicitly to remind ourselves of this timeout.
#build --remote_timeout=60s # Default is also 60s but we set it explicitly to remind ourselves of this timeout.
build:ci --remote_timeout=5m # Default is 60s.
# TODO: re-enable after fixing the error like this:
# `Failed to fetch file with hash 'xxx' because it does not exist remotely. --remote_download_outputs=minimal does not work if your remote cache evicts files during builds.`
# Probably disabling `--experimental_remote_cache_async` will help
#build --remote_download_minimal # https://bazel.build/reference/command-line-reference#flag--remote_download_minimal
#build --remote_download_outputs=toplevel # Still download outputs from top level targets.

build --experimental_remote_downloader=bazel-remote.idx.dfinity.network --experimental_remote_downloader_local_fallback
#build --experimental_remote_downloader=10.107.199.28:9092 --experimental_remote_downloader_local_fallback
build:local --experimental_remote_downloader=
build --remote_local_fallback
build --remote_local_fallback # TODO what's this
build --remote_upload_local_results=false
build:ci --remote_upload_local_results=true

Expand Down

0 comments on commit 323f6d5

Please sign in to comment.