devops: support firefox-win32 builds

This commit is contained in:
Andrey Lushnikov 2019-11-22 15:44:46 -08:00
Родитель a9cd015fdb
Коммит 26fef7bc46
3 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -32,6 +32,8 @@ if [[ "$(uname)" == "Darwin" ]]; then
echo "-- building on Mac"
elif [[ "$(uname)" == "Linux" ]]; then
echo "-- building on Linux"
elif [[ "$(uname)" == MINGW* ]]; then
echo "-- building on MINGW"
else
echo "ERROR: cannot upload on this platform!" 1>&2
exit 1;

Просмотреть файл

@ -15,7 +15,7 @@ HOST="https://playwrightaccount.blob.core.windows.net/builds"
ARCHIVES=(
"$HOST/firefox/%s/firefox-mac.zip"
"$HOST/firefox/%s/firefox-linux.zip"
"$HOST/firefox/%s/firefox-win.zip"
"$HOST/firefox/%s/firefox-win32.zip"
"$HOST/webkit/%s/minibrowser-linux.zip"
"$HOST/webkit/%s/minibrowser-mac-10.14.zip"
"$HOST/webkit/%s/minibrowser-mac-10.15.zip"

Просмотреть файл

@ -42,6 +42,8 @@ if [[ ("$1" == "firefox") || ("$1" == "firefox/") ]]; then
BLOB_NAME="firefox-mac.zip"
elif [[ "$(uname)" == "Linux" ]]; then
BLOB_NAME="firefox-linux.zip"
elif [[ "$(uname)" == MINGW* ]]; then
BLOB_NAME="firefox-win32.zip"
else
echo "ERROR: unzupported platform - $(uname)"
exit 1