diff options
author | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-02-11 17:25:15 +0200 |
---|---|---|
committer | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-02-11 17:25:15 +0200 |
commit | 43ed846a12d574a7a0465a54ded22507b706462a (patch) | |
tree | 5bce969b7133f03fba67686d405b719be1dafc49 /platform | |
parent | ff9dadba671998a7a2afbef1787e8b6a25e23476 (diff) | |
download | qtlocation-mapboxgl-43ed846a12d574a7a0465a54ded22507b706462a.tar.gz |
[build] Build `offline` tool on the bots
Make sure it doesn't break.
Diffstat (limited to 'platform')
-rwxr-xr-x | platform/linux/scripts/run.sh | 3 | ||||
-rwxr-xr-x | platform/osx/scripts/run.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/platform/linux/scripts/run.sh b/platform/linux/scripts/run.sh index 3e40881ec6..1c0c13968a 100755 --- a/platform/linux/scripts/run.sh +++ b/platform/linux/scripts/run.sh @@ -17,6 +17,9 @@ make linux -j${JOBS} BUILDTYPE=${BUILDTYPE} mapbox_time "compile_render_binary" \ make render -j${JOBS} BUILDTYPE=${BUILDTYPE} +mapbox_time "compile_offline_binary" \ +make offline -j${JOBS} BUILDTYPE=${BUILDTYPE} + mapbox_time "compile_tests" \ make test -j${JOBS} BUILDTYPE=${BUILDTYPE} diff --git a/platform/osx/scripts/run.sh b/platform/osx/scripts/run.sh index 5c6f3f3233..6d00d1b977 100755 --- a/platform/osx/scripts/run.sh +++ b/platform/osx/scripts/run.sh @@ -14,5 +14,8 @@ BUILDTYPE=${BUILDTYPE:-Release} mapbox_time "compile_render_binary" \ make render -j${JOBS} BUILDTYPE=${BUILDTYPE} +mapbox_time "compile_offline_binary" \ +make offline -j${JOBS} BUILDTYPE=${BUILDTYPE} + mapbox_time "compile_tests" \ make xtest -j${JOBS} BUILDTYPE=${BUILDTYPE} |