bazelrc: set remote timeout

This is needed for remote builds to succeed, so add it to the default
config to make it work OOTB.

Change-Id: I5dbe588f6d2f6356f48d32c9c8d68886b73afc2b
Reviewed-on: https://review.monogon.dev/c/monogon/+/4365
Reviewed-by: Jan Schär <jan@monogon.tech>
Tested-by: Jenkins CI
diff --git a/.bazelrc b/.bazelrc
index 9ecfa43..b3bbfde 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -36,6 +36,9 @@
 # Set the execution platform which adds constraints for the scheduler.
 build:remote --extra_execution_platforms=//build/platforms:remote_x86_64
 
+# We have some large uploads and actions, the default 60s is not enough.
+build:remote --remote_timeout=360s
+
 # Enable pure by default. Specific go_binary targets which need cgo should set
 # `pure = "off"`.
 build --@io_bazel_rules_go//go/config:pure