mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Run servo-warc-tests as part of test-perf
This commit is contained in:
parent
726a1854b0
commit
c3e2ce0624
2 changed files with 16 additions and 1 deletions
1
etc/ci/performance/.gitignore
vendored
1
etc/ci/performance/.gitignore
vendored
|
@ -4,6 +4,7 @@ output/*
|
||||||
.cache/*
|
.cache/*
|
||||||
page_load_test/tp5n/*
|
page_load_test/tp5n/*
|
||||||
page_load_test/tp5n.zip
|
page_load_test/tp5n.zip
|
||||||
|
servo-warc-tests/*
|
||||||
venv/*
|
venv/*
|
||||||
|
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
|
@ -26,13 +26,27 @@ else
|
||||||
echo "Found existing test cases, skipping download and unzip."
|
echo "Found existing test cases, skipping download and unzip."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
WARC_DIR="./servo-warc-tests"
|
||||||
|
WARC_REPO="git@github.com:servo/servo-warc-tests.git"
|
||||||
|
|
||||||
|
# Clone the warc tests if they don't exist
|
||||||
|
if [[ ! -d ${WARC_DIR} ]]; then
|
||||||
|
git clone ${WARC_REPO}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Make sure we're running with an up-to-date warc test repo
|
||||||
|
git -C ${WARC_DIR} pull
|
||||||
|
|
||||||
virtualenv venv --python="$(which python3)"
|
virtualenv venv --python="$(which python3)"
|
||||||
PS1="" source venv/bin/activate
|
PS1="" source venv/bin/activate
|
||||||
# `PS1` must be defined before activating virtualenv
|
# `PS1` must be defined before activating virtualenv
|
||||||
pip install "boto3>=1.4.0"
|
pip install \
|
||||||
|
"boto3>=1.4.0" \
|
||||||
|
git+https://github.com/ikreymer/pywb.git
|
||||||
|
|
||||||
mkdir -p servo
|
mkdir -p servo
|
||||||
mkdir -p output # Test result will be saved to output/perf-<timestamp>.json
|
mkdir -p output # Test result will be saved to output/perf-<timestamp>.json
|
||||||
./git_log_to_json.sh > servo/revision.json
|
./git_log_to_json.sh > servo/revision.json
|
||||||
|
|
||||||
./test_all.sh --servo ${*}
|
./test_all.sh --servo ${*}
|
||||||
|
SERVO_DIR="../../.." ${WARC_DIR}/run-warc-tests.sh
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue