Merge "RBE is only supported when the host is linux, so don't try on others." into main

This commit is contained in:
Joe Onorato
2024-06-25 17:58:35 +00:00
committed by Gerrit Code Review

View File

@@ -1246,6 +1246,11 @@ func (c *configImpl) StartGoma() bool {
}
func (c *configImpl) canSupportRBE() bool {
// Only supported on linux
if runtime.GOOS != "linux" {
return false
}
// Do not use RBE with prod credentials in scenarios when stubby doesn't exist, since
// its unlikely that we will be able to obtain necessary creds without stubby.
authType, _ := c.rbeAuth()