mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
23 lines
498 B
Bash
Executable File
23 lines
498 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
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
|