mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
devops: add //browser_patches/{build.sh,clean.sh}
(#8582)
These are just proxy scripts to the browsers, so you can do: ```sh $ ./browser_patches/prepare_checkout.sh ff-beta $ ./browser_patches/clean.sh ff-beta $ ./browser_patches/build.sh ff-beta $ ./browser_patches/export.sh ff-beta ```
This commit is contained in:
parent
7f8474cbf0
commit
9da26f9534
37
browser_patches/build.sh
Executable file
37
browser_patches/build.sh
Executable file
@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set +x
|
||||
|
||||
trap "cd $(pwd -P)" EXIT
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
|
||||
if [[ ($1 == '--help') || ($1 == '-h') ]]; then
|
||||
echo "usage: build.sh [firefox|webkit|firefox-beta]"
|
||||
echo
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $# == 0 ]]; then
|
||||
echo "missing browser: 'firefox' or 'webkit'"
|
||||
echo "try './build.sh --help' for more information"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ("$1" == "firefox") || ("$1" == "firefox/") || ("$1" == "ff") ]]; then
|
||||
bash ./firefox/build.sh "$@"
|
||||
elif [[ ("$1" == "firefox-beta") || ("$1" == "ff-beta") ]]; then
|
||||
bash ./firefox-beta/build.sh "$@"
|
||||
elif [[ ("$1" == "webkit") || ("$1" == "webkit/") || ("$1" == "wk") ]]; then
|
||||
bash ./webkit/build.sh "$@"
|
||||
elif [[ ("$1" == "chromium") || ("$1" == "chromium/") || ("$1" == "cr") ]]; then
|
||||
bash ./chromium/build.sh "$@"
|
||||
elif [[ ("$1" == "winldd") ]]; then
|
||||
bash ./winldd/build.sh "$@"
|
||||
elif [[ ("$1" == "ffmpeg") ]]; then
|
||||
bash ./ffmpeg/build.sh "$@"
|
||||
else
|
||||
echo ERROR: unknown browser to build - "$1"
|
||||
exit 1
|
||||
fi
|
||||
|
37
browser_patches/clean.sh
Executable file
37
browser_patches/clean.sh
Executable file
@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set +x
|
||||
|
||||
trap "cd $(pwd -P)" EXIT
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
|
||||
if [[ ($1 == '--help') || ($1 == '-h') ]]; then
|
||||
echo "usage: clean.sh [firefox|webkit|firefox-beta]"
|
||||
echo
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $# == 0 ]]; then
|
||||
echo "missing browser: 'firefox' or 'webkit'"
|
||||
echo "try './clean.sh --help' for more information"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ("$1" == "firefox") || ("$1" == "firefox/") || ("$1" == "ff") ]]; then
|
||||
bash ./firefox/clean.sh "$@"
|
||||
elif [[ ("$1" == "firefox-beta") || ("$1" == "ff-beta") ]]; then
|
||||
bash ./firefox-beta/clean.sh "$@"
|
||||
elif [[ ("$1" == "webkit") || ("$1" == "webkit/") || ("$1" == "wk") ]]; then
|
||||
bash ./webkit/clean.sh "$@"
|
||||
elif [[ ("$1" == "chromium") || ("$1" == "chromium/") || ("$1" == "cr") ]]; then
|
||||
bash ./chromium/clean.sh "$@"
|
||||
elif [[ ("$1" == "winldd") ]]; then
|
||||
bash ./winldd/clean.sh "$@"
|
||||
elif [[ ("$1" == "ffmpeg") ]]; then
|
||||
bash ./ffmpeg/clean.sh "$@"
|
||||
else
|
||||
echo ERROR: unknown browser to build - "$1"
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user