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 c942064926
commit 1157b0c61b

View File

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