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:
Andrey Lushnikov 2021-08-31 13:22:58 +03:00 committed by GitHub
parent 7f8474cbf0
commit 9da26f9534
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 74 additions and 0 deletions

37
browser_patches/build.sh Executable file
View 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
View 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