devops: fix arm64 webkit and firefox builds (#16115)

This commit is contained in:
Andrey Lushnikov 2022-08-01 13:30:49 -07:00 committed by GitHub
parent 76dc5d8a0f
commit b7b572c27c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,7 +210,7 @@ elif [[ "$2" == "compile" ]]; then
if [[ "${BUILD_FLAVOR}" == "webkit-ubuntu-18.04" ]]; then
export CC=/usr/bin/gcc-8
export CXX=/usr/bin/g++-8
elif [[ "${BUILD_FLAVOR}" == "*-arm64" ]]; then
elif [[ "${BUILD_FLAVOR}" == *"-arm64" ]]; then
export CC=/usr/bin/clang-12
export CXX=/usr/bin/clang++-12
fi