Removed arm64 platform for web-service on Oracle Linux

This commit is contained in:
Alexey Pustovalov 2025-03-05 16:45:12 +09:00
parent 09597149d7
commit e26fe78531

View File

@ -889,6 +889,9 @@ jobs:
# Chromium on Ubuntu is not available on s390x and armhf platform
elif [ "$MATRIX_OS" == "ubuntu" ] && [ "$MATRIX_BUILD" == "web-service" ]; then
platform_list="linux/amd64,linux/arm64"
# Chromium on Oracle Linux is available only on amd64 platform
elif [ "$MATRIX_OS" == "ol" ] && [ "$MATRIX_BUILD" == "web-service" ]; then
platform_list="linux/amd64"
else
platform_list=$(jq -r ".[\"os-linux\"].\"$MATRIX_OS\" | join(\",\")" "$MATRIX_FILE")
fi