diff options
author | Alexander Shalamov <alexander.shalamov@mapbox.com> | 2019-11-26 11:54:08 +0200 |
---|---|---|
committer | Alexander Shalamov <alexander.shalamov@mapbox.com> | 2019-11-27 16:43:33 +0200 |
commit | 2f8501043cb037234a5db82a2f32b49b29fdf8c8 (patch) | |
tree | bf662d30afa66b79aba4ec8afaaab0d8246c5e79 /circle.yml | |
parent | f10097640a8a62f9a139952844a75ac9b0b12543 (diff) | |
download | qtlocation-mapboxgl-2f8501043cb037234a5db82a2f32b49b29fdf8c8.tar.gz |
[test-runner] Move probe related command line args to manifest
- Move probe related command line arguments to manifest, example:
"probes": ["probeGFX", "probeNetwork", "probeMemory"],
"metric_path": "metrics/linux"
- Use manifest file name as a postfix for a result page
- Move injected probes 'begin' section before map object creation
- Generalize artifact storing shell script
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml index 8ad976c37d..65096d083a 100644 --- a/circle.yml +++ b/circle.yml @@ -267,9 +267,7 @@ commands: mkdir -p /tmp/tests/clang-tidy if [ -f clang-tidy.log ]; then cp clang-tidy.log /tmp/tests/clang-tidy; fi mkdir -p /tmp/tests/render - if [ -f render-test/tests_index.html ]; then cp render-test/tests_index.html /tmp/tests/render; fi - if [ -f render-test/render-tests_index.html ]; then cp render-test/render-tests_index.html /tmp/tests/render; fi - if [ -f render-test/query-tests_index.html ]; then cp render-test/query-tests_index.html /tmp/tests/render; fi + if ls render-test/*.html 1> /dev/null 2>&1; then cp render-test/*.html /tmp/tests/render; fi mkdir -p /tmp/tests/coredumps if ls core* 1> /dev/null 2>&1; then cp core* /tmp/tests/coredumps; fi mkdir -p /tmp/tests/valgrind |