summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-01-04 12:30:13 +0100
committerKonstantin Käfer <mail@kkaefer.com>2016-01-15 11:59:26 +0100
commit21e4029acf757898da8695474f94642f9858acd8 (patch)
tree567a10b18b4f1b573de5ae151018f6518244138a /platform
parent957415823a003111f6efecd1a1552a30f999235a (diff)
downloadqtlocation-mapboxgl-21e4029acf757898da8695474f94642f9858acd8.tar.gz
[core] use stale styles
This adds support for using cached styles that are stale. They're treated like changing styles; when the refreshed style changed compared to the one we've already had, we're swapping out the entire style, which might cause a slight flicker.
Diffstat (limited to 'platform')
-rwxr-xr-xplatform/linux/scripts/after_script.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linux/scripts/after_script.sh b/platform/linux/scripts/after_script.sh
index f8e4bc3486..b5397f1df2 100755
--- a/platform/linux/scripts/after_script.sh
+++ b/platform/linux/scripts/after_script.sh
@@ -10,6 +10,6 @@ if [ ! -z "${AWS_ACCESS_KEY_ID}" ] && [ ! -z "${AWS_SECRET_ACCESS_KEY}" ] ; then
REPO_NAME=$(basename $TRAVIS_REPO_SLUG)
- aws s3 cp --recursive --acl public-read test/fixtures/annotations \
- s3://mapbox/$REPO_NAME/render-tests/$TRAVIS_JOB_NUMBER/annotations
+ aws s3 cp --recursive --acl public-read --exclude "*" --include "*/actual.png" test/fixtures \
+ s3://mapbox/$REPO_NAME/render-tests/$TRAVIS_JOB_NUMBER
fi