devops: support firefox-win32 builds
This commit is contained in:
parent
a9cd015fdb
commit
26fef7bc46
|
|
@ -32,6 +32,8 @@ if [[ "$(uname)" == "Darwin" ]]; then
|
||||||
echo "-- building on Mac"
|
echo "-- building on Mac"
|
||||||
elif [[ "$(uname)" == "Linux" ]]; then
|
elif [[ "$(uname)" == "Linux" ]]; then
|
||||||
echo "-- building on Linux"
|
echo "-- building on Linux"
|
||||||
|
elif [[ "$(uname)" == MINGW* ]]; then
|
||||||
|
echo "-- building on MINGW"
|
||||||
else
|
else
|
||||||
echo "ERROR: cannot upload on this platform!" 1>&2
|
echo "ERROR: cannot upload on this platform!" 1>&2
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ HOST="https://playwrightaccount.blob.core.windows.net/builds"
|
||||||
ARCHIVES=(
|
ARCHIVES=(
|
||||||
"$HOST/firefox/%s/firefox-mac.zip"
|
"$HOST/firefox/%s/firefox-mac.zip"
|
||||||
"$HOST/firefox/%s/firefox-linux.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-linux.zip"
|
||||||
"$HOST/webkit/%s/minibrowser-mac-10.14.zip"
|
"$HOST/webkit/%s/minibrowser-mac-10.14.zip"
|
||||||
"$HOST/webkit/%s/minibrowser-mac-10.15.zip"
|
"$HOST/webkit/%s/minibrowser-mac-10.15.zip"
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@ if [[ ("$1" == "firefox") || ("$1" == "firefox/") ]]; then
|
||||||
BLOB_NAME="firefox-mac.zip"
|
BLOB_NAME="firefox-mac.zip"
|
||||||
elif [[ "$(uname)" == "Linux" ]]; then
|
elif [[ "$(uname)" == "Linux" ]]; then
|
||||||
BLOB_NAME="firefox-linux.zip"
|
BLOB_NAME="firefox-linux.zip"
|
||||||
|
elif [[ "$(uname)" == MINGW* ]]; then
|
||||||
|
BLOB_NAME="firefox-win32.zip"
|
||||||
else
|
else
|
||||||
echo "ERROR: unzupported platform - $(uname)"
|
echo "ERROR: unzupported platform - $(uname)"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue