summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzmiao <miao.zhao@mapbox.com>2019-10-25 18:22:32 +0300
committerGitHub <noreply@github.com>2019-10-25 18:22:32 +0300
commit128da903c19c860e89be36bf67bd02cfa408a525 (patch)
treec1b9da191fa8c46dac6c1064d401405610d74a72
parent646d4e3996513ed3e9247e958d39ce9e9b506652 (diff)
downloadqtlocation-mapboxgl-128da903c19c860e89be36bf67bd02cfa408a525.tar.gz
Config CircleCI to save render test output when failing (#15863)
* [render-test] Save index.html * Add extra folder
-rw-r--r--circle.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml
index 11954ccf6d..103ea8c685 100644
--- a/circle.yml
+++ b/circle.yml
@@ -267,7 +267,9 @@ commands:
when: on_fail
command: |
mkdir -p /tmp/tests/render
- if [ -f mapbox-gl-js/test/integration/index.html ]; then cp mapbox-gl-js/test/integration/index.html /tmp/tests/render; fi
+ mkdir -p /tmp/tests/probe
+ if [ -f index.html ]; then cp index.html /tmp/tests/render; fi
+ if [ -f render-test/index.html ]; then cp render-test/index.html /tmp/tests/probe; fi
mkdir -p /tmp/tests/coredumps
if ls core* 1> /dev/null 2>&1; then cp core* /tmp/tests/coredumps; fi
- store_artifacts: