mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-22 13:07:39 +01:00
f9081fa1ca
GitOrigin-RevId: 2b899116f3d1d9e2a893b781f45e0a6d2e3094d6
13 lines
205 B
Bash
13 lines
205 B
Bash
bazel_rbe_supported() {
|
|
|
|
OS="$(uname)"
|
|
ARCH="$(uname -m)"
|
|
|
|
# TODO SERVER-85806 enable RE for amd64
|
|
if [ "$OS" == "Linux" ] && [ "$ARCH" == "aarch64" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|