mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
add version_clean.sh
This commit is contained in:
parent
8603be99ad
commit
36e34ad636
1 changed files with 86 additions and 0 deletions
86
version_clean.sh
Executable file
86
version_clean.sh
Executable file
|
@ -0,0 +1,86 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2024 Alex313031.
|
||||
|
||||
YEL='\033[1;33m' # Yellow
|
||||
CYA='\033[1;96m' # Cyan
|
||||
RED='\033[1;31m' # Red
|
||||
GRE='\033[1;32m' # Green
|
||||
c0='\033[0m' # Reset Text
|
||||
bold='\033[1m' # Bold Text
|
||||
underline='\033[4m' # Underline Text
|
||||
|
||||
# Error handling
|
||||
yell() { echo "$0: $*" >&2; }
|
||||
die() { yell "$*"; exit 111; }
|
||||
try() { "$@" || die "${RED}Failed $*"; }
|
||||
|
||||
# --help
|
||||
displayHelp () {
|
||||
printf "\n" &&
|
||||
printf "${bold}${YEL}Script to check out Chromium tag of current Thorium version.${c0}\n" &&
|
||||
printf "\n"
|
||||
printf "${RED}NOTE: You may need to run ${c0}${bold}./trunk.sh ${RED}before using this script!${c0}\n" &&
|
||||
printf "\n"
|
||||
}
|
||||
case $1 in
|
||||
--help) displayHelp; exit 0;;
|
||||
esac
|
||||
|
||||
# chromium/src dir env variable
|
||||
if [ -z "${CR_DIR}" ]; then
|
||||
CR_SRC_DIR="$HOME/chromium/src"
|
||||
export CR_SRC_DIR
|
||||
else
|
||||
CR_SRC_DIR="${CR_DIR}"
|
||||
export CR_SRC_DIR
|
||||
fi
|
||||
|
||||
CR_VER="122.0.6261.132"
|
||||
|
||||
export CR_VER &&
|
||||
|
||||
printf "\n"
|
||||
printf "${GRE}Current Chromium version is:${c0} ${underline}$CR_VER${c0}\n"
|
||||
printf "\n"
|
||||
printf "${RED}NOTE: ${YEL}Checking out${CYA} tags/$CR_VER ${YEL}in ${CR_SRC_DIR}...${c0}\n"
|
||||
printf "\n"
|
||||
|
||||
cd ${CR_SRC_DIR} &&
|
||||
|
||||
git checkout -f tags/$CR_VER &&
|
||||
|
||||
git clean -ffd &&
|
||||
git clean -ffd &&
|
||||
|
||||
gclient sync --with_branch_heads --with_tags -f -R -D &&
|
||||
|
||||
gclient runhooks &&
|
||||
|
||||
# Install all sysroots (i.e. for ARM64)
|
||||
build/linux/sysroot_scripts/install-sysroot.py --all &&
|
||||
|
||||
printf "\n"
|
||||
printf "${GRE}Chromium tree is checked out at tag: ${c0}$CR_VER\n"
|
||||
printf "\n"
|
||||
|
||||
printf "${YEL}Downloading PGO Profiles for Linux, Windows, and Mac...\n" &&
|
||||
printf "\n" &&
|
||||
tput sgr0 &&
|
||||
|
||||
python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
||||
|
||||
python3 tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
||||
|
||||
python3 tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
||||
printf "\n" &&
|
||||
|
||||
printf "${YEL}Downloading PGO Profile for V8 (for when v8_enable_builtins_optimization = true)\n" &&
|
||||
printf "\n" &&
|
||||
tput sgr0 &&
|
||||
|
||||
python3 v8/tools/builtins-pgo/download_profiles.py --depot-tools=$HOME/depot_tools download &&
|
||||
printf "\n" &&
|
||||
|
||||
printf "${GRE}Done!\n"
|
||||
tput sgr0
|
Loading…
Reference in a new issue