travis: disable WebRTC builds for s390x/ppc64

Signed-off-by: Steven Noonan <steven@valvesoftware.com>
This commit is contained in:
Steven Noonan
2020-09-03 07:39:27 -07:00
parent d07d232dda
commit e076970c7a
+5
View File
@@ -51,6 +51,11 @@ BUILD_WEBRTC=${BUILD_WEBRTC:-1}
# builder, and it fails to link properly.
[[ $(uname -m) == s390x ]] && BUILD_SANITIZERS=0
# Big-endian platforms can't build with WebRTC out-of-the-box.
[[ $(uname -m) == s390x ]] && BUILD_WEBRTC=0
[[ $(uname -m) == powerpc ]] && BUILD_WEBRTC=0
[[ $(uname -m) == ppc64 ]] && BUILD_WEBRTC=0
# Foreign architecture docker containers don't support sanitizers.
[[ $(uname -m) != x86_64 ]] && grep -q -e AuthenticAMD -e GenuineIntel /proc/cpuinfo && BUILD_SANITIZERS=0