mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
24 lines
519 B
Bash
Executable File
24 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
cd "$(dirname $0)"
|
|
cd "checkout"
|
|
|
|
if ! [[ $(git rev-parse --abbrev-ref HEAD) == "pwdev" ]]; then
|
|
echo "ERROR: Cannot build any branch other than PWDEV"
|
|
exit 1;
|
|
else
|
|
echo "-- checking git branch is PWDEV - OK"
|
|
fi
|
|
|
|
if [[ "$(uname)" == "Darwin" ]]; then
|
|
./Tools/Scripts/build-webkit --release
|
|
elif [[ "$(uname)" == "Linux" ]]; then
|
|
./Tools/Scripts/build-webkit --gtk --release MiniBrowser
|
|
else
|
|
echo "ERROR: cannot upload on this platform!" 1>&2
|
|
exit 1;
|
|
fi
|