@@ -14,6 +14,7 @@ common --incompatible_disallow_empty_glob
1414
1515build --cxxopt "-std=c++17" --host_cxxopt "-std=c++17"
1616build --cxxopt "-xc++" --host_cxxopt "-xc++"
17+ build --cxxopt "-DBAZEL_BUILD" --host_cxxopt "-DBAZEL_BUILD"
1718
1819# Needed for floating point stability in FFT (fft_test will check this).
1920# See also https://kristerw.github.io/2021/11/09/fp-contract/
@@ -78,23 +79,18 @@ build --jobs=200
7879build --disk_cache=~/.cache/bazel-disk-cache
7980build --repository_cache=~/.cache/bazel-repository-cache
8081
81- # --- CI Settings (write access) ---
82- build:ci --remote_cache=https://storage.googleapis.com/openroad-bazel-cache
83- build:ci --remote_cache_compression=true
84- build:ci --remote_upload_local_results=true
8582# CI only needs to know if the build succeeded, not the artifacts themselves.
8683build:ci --remote_download_minimal
84+ build:ci --remote_upload_local_results=true
8785# Disable disk cache for CI builds
8886build:ci --disk_cache=
8987
90- # --- OpenROAD Developer Settings (read-only access) ---
91- build:openroad-dev --remote_cache=https://storage.googleapis.com/openroad-bazel-cache
92- build:openroad-dev --remote_cache_compression=true
93- build:openroad-dev --remote_upload_local_results=false
94- # Developers need the actual output files to run and use them.
95- build:openroad-dev --remote_download_toplevel
96- build:openroad-dev --google_default_credentials=true
97- build:openroad-dev --disk_cache=/workspace/.cache/bazel-disk-cache
98- build:openroad-dev --repository_cache=/workspace/.cache/bazel-repository-cache
88+ # Setup remote cache
89+ build --remote_cache=https://bazel.precisioninno.com
90+ build --remote_cache_compression=true
91+ build --remote_upload_local_results=false
92+
93+ # Without this, bazelisk build ... builds the bazel-orfs tests
94+ build --build_tag_filters=-orfs
9995
10096try-import %workspace%/user.bazelrc
0 commit comments