mirror of
https://github.com/servo/servo.git
synced 2025-08-15 18:35:33 +01:00
Add an option to submit test-perf result to perfherder
This commit is contained in:
parent
16199b4983
commit
ddd03229e0
4 changed files with 38 additions and 31 deletions
|
@ -7,27 +7,21 @@ Servo Page Load Time Test
|
|||
|
||||
# Basic Usage
|
||||
|
||||
## Prepare the test runner
|
||||
`./mach test-perf` can be used to run a performance test on your servo build. The test result JSON will be saved to `etc/ci/performance/output/`. You can then run `python test_differ.py` to compare these two test results. Run `python test_differ.py -h` for instructions.
|
||||
|
||||
# Setup for CI machine
|
||||
## CI for Servo
|
||||
|
||||
* Clone this repo
|
||||
* Download [tp5n.zip](http://people.mozilla.org/~jmaher/taloszips/zips/tp5n.zip), extract it to `page_load_test/tp5n`
|
||||
* Run `prepare_manifest.sh` to transform the tp5n manifest to our format
|
||||
* Install the Python3 `treeherder-client` package. For example, to install it in a virtualenv: `python3 -m virtualenv venv; source venv/bin/activate; pip install "treeherder-client>=3.0.0"`
|
||||
* Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET`
|
||||
* Run `./mach test-perf --submit` to run and submit the result to Perfherder.
|
||||
|
||||
## Build Servo
|
||||
* Clone the servo repo
|
||||
* Compile release build
|
||||
* Run `git_log_to_json.sh` in the servo repo, save the output as `revision.json`
|
||||
* Put your `servo` binary, `revision.json` and `resources` folder in `etc/ci/performance/servo/`
|
||||
## CI for Gecko
|
||||
|
||||
## Run
|
||||
* Activate the virutalenv: `source venv/bin/activate`
|
||||
* Sync your system clock before running, the Perfherder API SSL check will fail if your system clock is not accurate. (e.g. `sudo nptdate tw.pool.ntp.org`)
|
||||
* Run `test_all.sh [--servo|--gecko] [--submit]`
|
||||
- choose `servo` or `gecko` as the testing engine
|
||||
- enable `submit`, if you want to submit to perfherder
|
||||
* Test results are submitted to https://treeherder.mozilla.org/#/jobs?repo=servo
|
||||
* Install Firefox Nightly in your PATH
|
||||
* Download [geckodriver](https://github.com/mozilla/geckodriver/releases) and add it to the `PATH`
|
||||
* `pip install selenium`
|
||||
* Run `python gecko_driver.py` to test
|
||||
* Run `test_all.sh --gecko --submit`
|
||||
|
||||
# How it works
|
||||
|
||||
|
@ -61,14 +55,6 @@ If you want to test the data submission code in `submit_to_perfherder.py` withou
|
|||
* `./manage.py create_credentials <username> <email> "description"`, the email has to match your logged in user. Remember to log-in through the Web UI once before you run this.
|
||||
* Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET`
|
||||
|
||||
## For Gecko
|
||||
|
||||
* Install Firefox Nightly in your PATH
|
||||
* Download [geckodriver](https://github.com/mozilla/geckodriver/releases) and add it to the `PATH`
|
||||
* `pip install selenium`
|
||||
* Run `python gecko_driver.py` to test
|
||||
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
If you saw this error message:
|
||||
|
|
|
@ -57,7 +57,7 @@ then
|
|||
# results appear on the same date. Use the correct result when Perfherder
|
||||
# allows us to change the date.
|
||||
python3 submit_to_perfherder.py \
|
||||
"${output:-}" "${engine}" "${PERF_FILE}" servo/revision.json
|
||||
"${engine}" "${PERF_FILE}" servo/revision.json
|
||||
fi
|
||||
|
||||
echo "Stopping the local server"
|
||||
|
|
|
@ -32,6 +32,16 @@ PS1="" source venv/bin/activate
|
|||
pip install "treeherder-client>=3.0.0"
|
||||
|
||||
mkdir -p servo
|
||||
mkdir -p output
|
||||
./git_log_to_json.sh > servo/revision.json && \
|
||||
./test_all.sh --servo
|
||||
mkdir -p output # Test result will be saved to output/perf-<timestamp>.json
|
||||
./git_log_to_json.sh > servo/revision.json
|
||||
|
||||
if [[ "${#}" -eq 1 ]]; then
|
||||
if [[ "${1}" = "--submit" ]]; then
|
||||
./test_all.sh --servo --submit
|
||||
else
|
||||
echo "Unrecognized argument: ${1}; Ignore and proceed without submitting"
|
||||
./test_all.sh --servo
|
||||
fi
|
||||
else
|
||||
./test_all.sh --servo
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue