.bazelrc.ci: disable stamping in CI config
This avoids unnecessary rebuilds and test runs
whenever the git head ref changes.
Change-Id: I13d6b4566430aee2b1152575cded6f3ca03828ce
Reviewed-on: https://review.monogon.dev/c/monogon/+/3846
Reviewed-by: Tim Windelschmidt <tim@monogon.tech>
Tested-by: Jenkins CI
diff --git a/.bazelrc.ci b/.bazelrc.ci
index cc22fe8..81ba128 100644
--- a/.bazelrc.ci
+++ b/.bazelrc.ci
@@ -12,4 +12,7 @@
# Setup a disk cache with a maximum size of 150Gi. We currently have our PVs
# set to 200Gi, which is more than enough.
build --disk_cache=~/.cache/bazel-monogon/
-build --experimental_disk_cache_gc_max_size=150G
\ No newline at end of file
+build --experimental_disk_cache_gc_max_size=150G
+
+# Disable stamping for cache determinism
+build --nostamp