mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 00:17:37 +01:00
f242fe29f7
GitOrigin-RevId: d0e25409250b3984bd160c583a392a223bc91227
12 lines
192 B
Bash
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
|
|
}
|