| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | set -e | 
					
						
							|  |  |  | set +x | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | trap "cd $(pwd -P)" EXIT | 
					
						
							|  |  |  | cd "$(dirname "$0")" | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  | SCRIPT_PATH=$(pwd -P) | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | REMOTE_BROWSER_UPSTREAM="browser_upstream" | 
					
						
							|  |  |  | BUILD_BRANCH="playwright-build" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ ($1 == '--help') || ($1 == '-h') ]]; then | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |   echo "usage: $(basename "$0") [firefox|firefox-beta|webkit] [custom_checkout_path]" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  |   echo | 
					
						
							|  |  |  |   echo "Prepares browser checkout. The checkout is a GIT repository that:" | 
					
						
							|  |  |  |   echo "- has a '$REMOTE_BROWSER_UPSTREAM' remote pointing to a REMOTE_URL from UPSTREAM_CONFIG.sh" | 
					
						
							|  |  |  |   echo "- has a '$BUILD_BRANCH' branch that is BASE_REVISION with all the patches applied." | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   echo "You can optionally specify custom_checkout_path if you want to use some other browser checkout" | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   exit 0 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ $# == 0 ]]; then | 
					
						
							|  |  |  |   echo "missing browser: 'firefox' or 'webkit'" | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |   echo "try './$(basename "$0") --help' for more information" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  | function prepare_chromium_checkout { | 
					
						
							|  |  |  |   cd "${SCRIPT_PATH}" | 
					
						
							| 
									
										
										
										
											2021-02-20 06:23:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   source "${SCRIPT_PATH}/chromium/ensure_depot_tools.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |   if [[ -z "${CR_CHECKOUT_PATH}" ]]; then | 
					
						
							| 
									
										
										
										
											2021-10-29 02:48:57 +08:00
										 |  |  |     CR_CHECKOUT_PATH="$HOME/chromium" | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Get chromium SHA from the build revision. | 
					
						
							|  |  |  |   # This will get us the last redirect URL from the crrev.com service. | 
					
						
							|  |  |  |   CRREV=$(head -1 ./chromium/BUILD_NUMBER) | 
					
						
							|  |  |  |   REVISION_URL=$(curl -ILs -o /dev/null -w %{url_effective} "https://crrev.com/${CRREV}") | 
					
						
							|  |  |  |   CRSHA="${REVISION_URL##*/}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Update Chromium checkout. | 
					
						
							|  |  |  |   # | 
					
						
							| 
									
										
										
										
											2021-11-13 02:23:22 +08:00
										 |  |  |   # This is based on https://chromium.googlesource.com/chromium/src/+/main/docs/linux/build_instructions.md#get-the-code | 
					
						
							| 
									
										
										
										
											2021-10-29 02:48:57 +08:00
										 |  |  |   if [[ ! -d "${CR_CHECKOUT_PATH}" ]]; then | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |     rm -rf "${CR_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     mkdir -p "${CR_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     cd "${CR_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     fetch --nohooks chromium | 
					
						
							|  |  |  |     cd src | 
					
						
							|  |  |  |     if [[ $(uname) == "Linux" ]]; then | 
					
						
							| 
									
										
										
										
											2021-11-02 18:23:15 +08:00
										 |  |  |       ./build/install-build-deps.sh | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |     fi | 
					
						
							|  |  |  |     gclient runhooks | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2021-10-29 02:48:57 +08:00
										 |  |  |   if [[ ! -d "${CR_CHECKOUT_PATH}/src" ]]; then | 
					
						
							|  |  |  |     echo "ERROR: CR_CHECKOUT_PATH does not have src/ subfolder; is this a chromium checkout?" | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |   cd "${CR_CHECKOUT_PATH}/src" | 
					
						
							| 
									
										
										
										
											2021-11-13 02:23:22 +08:00
										 |  |  |   git checkout main | 
					
						
							|  |  |  |   git pull origin main | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |   git checkout "${CRSHA}" | 
					
						
							|  |  |  |   gclient sync -D | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | # FRIENDLY_CHECKOUT_PATH is used only for logging. | 
					
						
							|  |  |  | FRIENDLY_CHECKOUT_PATH=""; | 
					
						
							|  |  |  | CHECKOUT_PATH="" | 
					
						
							| 
									
										
										
										
											2019-11-24 08:22:04 +08:00
										 |  |  | PATCHES_PATH="" | 
					
						
							| 
									
										
										
										
											2019-12-10 05:16:27 +08:00
										 |  |  | BUILD_NUMBER="" | 
					
						
							| 
									
										
										
										
											2020-06-03 07:51:13 +08:00
										 |  |  | WEBKIT_EXTRA_FOLDER_PATH="" | 
					
						
							|  |  |  | FIREFOX_EXTRA_FOLDER_PATH="" | 
					
						
							| 
									
										
										
										
											2020-08-08 07:22:05 +08:00
										 |  |  | if [[ ("$1" == "chromium") || ("$1" == "chromium/") || ("$1" == "cr") ]]; then | 
					
						
							| 
									
										
										
										
											2021-02-18 06:43:19 +08:00
										 |  |  |   prepare_chromium_checkout | 
					
						
							| 
									
										
										
										
											2020-09-10 08:05:08 +08:00
										 |  |  |   exit 0 | 
					
						
							|  |  |  | elif [[ ("$1" == "ffmpeg") || ("$1" == "ffmpeg/") ]]; then | 
					
						
							|  |  |  |   echo "FYI: ffmpeg checkout is not supported. Use '//browser_patches/ffmpeg/build.sh' instead" | 
					
						
							| 
									
										
										
										
											2020-08-08 07:22:05 +08:00
										 |  |  |   exit 0 | 
					
						
							| 
									
										
										
										
											2020-09-19 01:30:53 +08:00
										 |  |  | elif [[ ("$1" == "winldd") || ("$1" == "winldd/") ]]; then | 
					
						
							|  |  |  |   echo "FYI: winldd source code is available right away" | 
					
						
							|  |  |  |   exit 0 | 
					
						
							| 
									
										
										
										
											2020-08-08 07:22:05 +08:00
										 |  |  | elif [[ ("$1" == "firefox") || ("$1" == "firefox/") || ("$1" == "ff") ]]; then | 
					
						
							| 
									
										
										
										
											2021-10-15 01:20:06 +08:00
										 |  |  |   if [[ -z "${FF_CHECKOUT_PATH}" ]]; then | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH='$HOME/firefox'; | 
					
						
							|  |  |  |     CHECKOUT_PATH="$HOME/firefox" | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     echo "WARNING: using checkout path from FF_CHECKOUT_PATH env: ${FF_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     CHECKOUT_PATH="${FF_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH="<FF_CHECKOUT_PATH>" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 08:22:04 +08:00
										 |  |  |   PATCHES_PATH="$PWD/firefox/patches" | 
					
						
							| 
									
										
										
										
											2020-06-03 07:51:13 +08:00
										 |  |  |   FIREFOX_EXTRA_FOLDER_PATH="$PWD/firefox/juggler" | 
					
						
							| 
									
										
										
										
											2020-07-03 03:09:27 +08:00
										 |  |  |   BUILD_NUMBER=$(head -1 "$PWD/firefox/BUILD_NUMBER") | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  |   source "./firefox/UPSTREAM_CONFIG.sh" | 
					
						
							| 
									
										
										
										
											2021-10-15 01:20:06 +08:00
										 |  |  | elif [[ ("$1" == "firefox-beta") || ("$1" == "ff-beta") ]]; then | 
					
						
							|  |  |  |   # NOTE: firefox-beta re-uses firefox checkout. | 
					
						
							|  |  |  |   if [[ -z "${FF_CHECKOUT_PATH}" ]]; then | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH='$HOME/firefox'; | 
					
						
							|  |  |  |     CHECKOUT_PATH="$HOME/firefox" | 
					
						
							|  |  |  |   else | 
					
						
							| 
									
										
										
										
											2020-12-05 10:46:20 +08:00
										 |  |  |     echo "WARNING: using checkout path from FF_CHECKOUT_PATH env: ${FF_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     CHECKOUT_PATH="${FF_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH="<FF_CHECKOUT_PATH>" | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2021-05-05 08:46:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-08 08:05:51 +08:00
										 |  |  |   PATCHES_PATH="$PWD/firefox-beta/patches" | 
					
						
							|  |  |  |   FIREFOX_EXTRA_FOLDER_PATH="$PWD/firefox-beta/juggler" | 
					
						
							|  |  |  |   BUILD_NUMBER=$(head -1 "$PWD/firefox-beta/BUILD_NUMBER") | 
					
						
							|  |  |  |   source "./firefox-beta/UPSTREAM_CONFIG.sh" | 
					
						
							| 
									
										
										
										
											2020-03-25 04:22:46 +08:00
										 |  |  | elif [[ ("$1" == "webkit") || ("$1" == "webkit/") || ("$1" == "wk") ]]; then | 
					
						
							| 
									
										
										
										
											2021-10-15 01:20:06 +08:00
										 |  |  |   if [[ -z "${WK_CHECKOUT_PATH}" ]]; then | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH='$HOME/webkit'; | 
					
						
							|  |  |  |     CHECKOUT_PATH="$HOME/webkit" | 
					
						
							|  |  |  |   else | 
					
						
							| 
									
										
										
										
											2020-12-08 00:42:20 +08:00
										 |  |  |     echo "WARNING: using checkout path from WK_CHECKOUT_PATH env: ${WK_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     CHECKOUT_PATH="${WK_CHECKOUT_PATH}" | 
					
						
							|  |  |  |     FRIENDLY_CHECKOUT_PATH="<WK_CHECKOUT_PATH>" | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2021-10-15 01:20:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   PATCHES_PATH="$PWD/webkit/patches" | 
					
						
							|  |  |  |   WEBKIT_EXTRA_FOLDER_PATH="$PWD/webkit/embedder/Playwright" | 
					
						
							|  |  |  |   BUILD_NUMBER=$(head -1 "$PWD/webkit/BUILD_NUMBER") | 
					
						
							|  |  |  |   source "./webkit/UPSTREAM_CONFIG.sh" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | else | 
					
						
							|  |  |  |   echo ERROR: unknown browser - "$1" | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # if there's no checkout folder - checkout one. | 
					
						
							|  |  |  | if ! [[ -d $CHECKOUT_PATH ]]; then | 
					
						
							|  |  |  |   echo "-- $FRIENDLY_CHECKOUT_PATH is missing - checking out.." | 
					
						
							| 
									
										
										
										
											2021-05-05 16:12:03 +08:00
										 |  |  |   if [[ -n "$CI" ]]; then | 
					
						
							|  |  |  |     # In CI environment, we re-checkout constantly, so we do a shallow checkout to save time. | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |     git clone --single-branch --depth 1 --branch "$BASE_BRANCH" "$REMOTE_URL" "$CHECKOUT_PATH" | 
					
						
							| 
									
										
										
										
											2021-05-05 16:12:03 +08:00
										 |  |  |   else | 
					
						
							|  |  |  |     # In non-CI environment, do a full checkout. This takes time, | 
					
						
							|  |  |  |     # but liberates from the `git fetch --unshallow`. | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |     git clone --single-branch --branch "$BASE_BRANCH" "$REMOTE_URL" "$CHECKOUT_PATH" | 
					
						
							| 
									
										
										
										
											2021-05-05 16:12:03 +08:00
										 |  |  |   fi | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | else | 
					
						
							|  |  |  |   echo "-- checking $FRIENDLY_CHECKOUT_PATH folder - OK" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # if folder exists but not a git repository - bail out. | 
					
						
							|  |  |  | if ! [[ -d $CHECKOUT_PATH/.git ]]; then | 
					
						
							|  |  |  |   echo "ERROR: $FRIENDLY_CHECKOUT_PATH is not a git repository! Remove it and re-run the script." | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   echo "-- checking $FRIENDLY_CHECKOUT_PATH is a git repo - OK" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # ============== SETTING UP GIT REPOSITORY ============== | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  | cd "$CHECKOUT_PATH" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Bail out if git repo is dirty. | 
					
						
							| 
									
										
										
										
											2019-12-03 04:58:44 +08:00
										 |  |  | if [[ -n $(git status -s --untracked-files=no) ]]; then | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  |   echo "ERROR: $FRIENDLY_CHECKOUT_PATH has dirty GIT state - commit everything and re-run the script." | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Setting up |$REMOTE_BROWSER_UPSTREAM| remote and fetch the $BASE_BRANCH | 
					
						
							|  |  |  | if git remote get-url $REMOTE_BROWSER_UPSTREAM >/dev/null; then | 
					
						
							|  |  |  |   echo "-- setting |$REMOTE_BROWSER_UPSTREAM| remote url to $REMOTE_URL" | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |   git remote set-url $REMOTE_BROWSER_UPSTREAM "$REMOTE_URL" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | else | 
					
						
							|  |  |  |   echo "-- adding |$REMOTE_BROWSER_UPSTREAM| remote to $REMOTE_URL" | 
					
						
							| 
									
										
										
										
											2021-08-07 03:01:41 +08:00
										 |  |  |   git remote rename origin $REMOTE_BROWSER_UPSTREAM | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 18:04:06 +08:00
										 |  |  | # Check if our checkout contains BASE_REVISION. | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  | if ! git cat-file -e "$BASE_REVISION"^{commit} 2>/dev/null; then | 
					
						
							| 
									
										
										
										
											2020-11-05 18:04:06 +08:00
										 |  |  |   # Detach git head so that we can fetch into branch. | 
					
						
							|  |  |  |   git checkout --detach >/dev/null 2>/dev/null | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-29 02:07:22 +08:00
										 |  |  |   if [[ -z "$CI" ]]; then | 
					
						
							|  |  |  |     # On non-CI, fetch everything. | 
					
						
							|  |  |  |     git fetch "$REMOTE_BROWSER_UPSTREAM" "$BASE_BRANCH" | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     # On CI, fetch from REMOTE_BROWSER_UPSTREAM more and more commits | 
					
						
							|  |  |  |     # until we find $BASE_REVISION. | 
					
						
							|  |  |  |     # This technique allows us start with a shallow clone. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Fetch 128 commits first, and then double the amount every iteration. | 
					
						
							|  |  |  |     FETCH_DEPTH=128 | 
					
						
							|  |  |  |     SUCCESS="no" | 
					
						
							|  |  |  |     while (( FETCH_DEPTH <= 8192 )); do | 
					
						
							|  |  |  |       echo "Fetching ${FETCH_DEPTH} commits to find base revision..." | 
					
						
							|  |  |  |       git fetch --depth "${FETCH_DEPTH}" "$REMOTE_BROWSER_UPSTREAM" "$BASE_BRANCH" | 
					
						
							|  |  |  |       FETCH_DEPTH=$(( FETCH_DEPTH * 2 )); | 
					
						
							|  |  |  |       if git cat-file -e "$BASE_REVISION"^{commit} >/dev/null; then | 
					
						
							|  |  |  |         SUCCESS="yes" | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       fi | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  |     if [[ "${SUCCESS}" == "no" ]]; then | 
					
						
							|  |  |  |       echo "ERROR: $FRIENDLY_CHECKOUT_PATH/ does not include the BASE_REVISION (@$BASE_REVISION). Wrong revision number?" | 
					
						
							|  |  |  |       exit 1 | 
					
						
							| 
									
										
										
										
											2020-11-05 18:04:06 +08:00
										 |  |  |     fi | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | fi | 
					
						
							| 
									
										
										
										
											2020-05-13 06:20:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-10 05:16:27 +08:00
										 |  |  | echo "-- checking $FRIENDLY_CHECKOUT_PATH repo has BASE_REVISION (@$BASE_REVISION) commit - OK" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Check out the $BASE_REVISION | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  | git checkout "$BASE_REVISION" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Create a playwright-build branch and apply all the patches to it. | 
					
						
							|  |  |  | if git show-ref --verify --quiet refs/heads/playwright-build; then | 
					
						
							|  |  |  |   git branch -D playwright-build | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | git checkout -b playwright-build | 
					
						
							| 
									
										
										
										
											2019-12-10 05:16:27 +08:00
										 |  |  | echo "-- applying patches" | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  | git apply --index --whitespace=nowarn "$PATCHES_PATH"/* | 
					
						
							| 
									
										
										
										
											2020-04-23 01:52:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-03 07:51:13 +08:00
										 |  |  | if [[ ! -z "${WEBKIT_EXTRA_FOLDER_PATH}" ]]; then | 
					
						
							|  |  |  |   echo "-- adding WebKit embedders" | 
					
						
							| 
									
										
										
										
											2020-11-05 03:20:47 +08:00
										 |  |  |   EMBEDDER_DIR="$PWD/Tools/Playwright" | 
					
						
							|  |  |  |   # git status does not show empty directories, check it separately. | 
					
						
							|  |  |  |   if [[ -d $EMBEDDER_DIR ]]; then | 
					
						
							|  |  |  |     echo "ERROR: $EMBEDDER_DIR already exists! Remove it and re-run the script." | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |   cp -r "${WEBKIT_EXTRA_FOLDER_PATH}" "$EMBEDDER_DIR" | 
					
						
							|  |  |  |   git add "$EMBEDDER_DIR" | 
					
						
							| 
									
										
										
										
											2020-06-03 07:51:13 +08:00
										 |  |  | elif [[ ! -z "${FIREFOX_EXTRA_FOLDER_PATH}" ]]; then | 
					
						
							|  |  |  |   echo "-- adding juggler" | 
					
						
							| 
									
										
										
										
											2020-11-05 03:20:47 +08:00
										 |  |  |   EMBEDDER_DIR="$PWD/juggler" | 
					
						
							|  |  |  |   # git status does not show empty directories, check it separately. | 
					
						
							|  |  |  |   if [[ -d $EMBEDDER_DIR ]]; then | 
					
						
							|  |  |  |     echo "ERROR: $EMBEDDER_DIR already exists! Remove it and re-run the script." | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2021-08-07 20:32:18 +08:00
										 |  |  |   cp -r "${FIREFOX_EXTRA_FOLDER_PATH}" "$EMBEDDER_DIR" | 
					
						
							|  |  |  |   git add "$EMBEDDER_DIR" | 
					
						
							| 
									
										
										
										
											2020-04-23 01:52:17 +08:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 08:46:24 +08:00
										 |  |  | git commit -a --author="playwright-devops <devops@playwright.dev>" -m "chore($1): bootstrap build #$BUILD_NUMBER" | 
					
						
							| 
									
										
										
										
											2019-11-22 09:06:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | echo "DONE. Browser is ready to be built." |