2022-04-20 17:23:02 -04:00
|
|
|
## Windows native build trunk script.
|
|
|
|
# Copyright (c) 2022 Alex313031.
|
|
|
|
|
2022-05-18 17:25:56 -04:00
|
|
|
echo "Rebasing/Syncing and running hooks..." &&
|
|
|
|
|
2022-05-18 17:02:36 -04:00
|
|
|
cd C:\src\chromium\src\v8 &&
|
2022-04-20 17:23:02 -04:00
|
|
|
|
|
|
|
git checkout -f origin/main &&
|
|
|
|
|
2022-05-18 17:02:36 -04:00
|
|
|
cd C:\src\chromium\src &&
|
2022-04-20 17:23:02 -04:00
|
|
|
|
|
|
|
git checkout -f origin/main &&
|
|
|
|
|
|
|
|
git rebase-update &&
|
|
|
|
|
|
|
|
git fetch --tags &&
|
|
|
|
|
2022-05-18 17:02:36 -04:00
|
|
|
gclient sync --with_branch_heads --with_tags -f -R -D &&
|
2022-04-20 17:23:02 -04:00
|
|
|
|
|
|
|
gclient runhooks &&
|
|
|
|
|
2022-05-18 17:25:56 -04:00
|
|
|
echo "Downloading PGO Profile for Win64..." &&
|
|
|
|
|
2022-04-20 17:23:02 -04:00
|
|
|
python tools\update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
|
|
|
|
|
|
|
exit 0
|