0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/evergreen/bazel_RBE_supported.sh
Daniel Moody f242fe29f7 SERVER-89304 SERVER-89305 enable remote cache on windows and macos (#26401)
GitOrigin-RevId: d0e25409250b3984bd160c583a392a223bc91227
2024-08-22 19:38:09 +00:00

12 lines
192 B
Bash

bazel_rbe_supported() {
OS="$(uname)"
ARCH="$(uname -m)"
if [ "$ARCH" == "aarch64" ] || [ "$ARCH" == "arm64" ] || [ "$ARCH" == "x86_64" ]; then
return 0
else
return 1
fi
}