Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc(build): update README.chromium when rolling devtools #16144

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions core/scripts/roll-to-devtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,20 @@ lh_e2e_res_dir="third-party/devtools-tests/e2e/resources/lighthouse/"
fe_e2e_res_dir="$dt_dir/test/e2e/resources/lighthouse"
rsync -avh "$lh_e2e_res_dir" "$fe_e2e_res_dir" --exclude="OWNERS" --delete

PKG_VERSION=$(node -e "console.log(require('./package.json').version)")
REVISION=$(git rev-parse HEAD)
echo "Name: Lighthouse
Short Name: lighthouse
Version: $PKG_VERSION
Revision: $REVISION
URL: https://github.com/GoogleChrome/lighthouse
License: Apache License 2.0
License File: LICENSE
Security Critical: no
Shipped: yes

This directory contains Chromium's version of the lighthouse report assets, including renderer." > "$fe_lh_dir/README.chromium"

echo ""
echo "Done. To run the e2e tests: "
echo " DEVTOOLS_PATH=\"$dt_dir\" yarn test-devtools"
Loading