summaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2019-11-19 00:17:59 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2019-11-20 13:56:48 +0200
commit656bc9c8bb2facd0ee0ac25543f50719a12d69d2 (patch)
treeb87bc02689faf417edb4f4057a4d5472bf771190 /circle.yml
parent1b58e87f154bf7d3d5f38ef32cc4b171362f73a2 (diff)
downloadqtlocation-mapboxgl-656bc9c8bb2facd0ee0ac25543f50719a12d69d2.tar.gz
[build] Run Valgrind instead of Memory Sanitizer
Memory Sanitizer requires all the dependencies, including libstdc++ to be compiled with Memory Sanitizer, otherwise we will get tons of false positives.
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml20
1 files changed, 9 insertions, 11 deletions
diff --git a/circle.yml b/circle.yml
index e4eab08cc2..042ffc97a2 100644
--- a/circle.yml
+++ b/circle.yml
@@ -73,13 +73,11 @@ workflows:
- next-sanity-checks
config_params: '-G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER=clang-8 -DCMAKE_CXX_COMPILER=clang++-8 -DCMAKE_BUILD_TYPE=Sanitize -DMBGL_WITH_SANITIZER=thread'
- next-build-template:
- name: next-FIXME-linux-memsan
+ name: next-FIXME-linux-valgrind
executor_name: ubuntu-disco
target_is_linux: true
- requires:
- - next-sanity-checks
- config_params: '-G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER=clang-8 -DCMAKE_CXX_COMPILER=clang++-8 -DCMAKE_BUILD_TYPE=Sanitize -DMBGL_WITH_SANITIZER=memory'
- test_params: '|| true'
+ config_params: '-G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER=clang-8 -DCMAKE_CXX_COMPILER=clang++-8 -DCMAKE_CXX_FLAGS=-DSANITIZE'
+ test_params: '-j 4 -E "mbgl-node|gl-benchmark" -D ExperimentalMemCheck || true'
- next-build-template:
name: next-FIXME-linux-ubsan
executor_name: ubuntu-disco
@@ -187,12 +185,11 @@ executors:
ubuntu-disco:
docker:
# FIXME: Move the image to mbgl/
- - image: tmpsantos/mbgl_ci:1.6
+ - image: tmpsantos/mbgl_ci:1.7
resource_class: xlarge
working_directory: /src
environment:
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
- MSAN_OPTIONS: poison_in_dtor=1
ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
QT_INSTALL_DOCS: /usr/share/qt5/doc
QT_VERSION: 5
@@ -217,6 +214,7 @@ commands:
command: |
git submodule sync
git submodule update --init --recursive
+ git gc
npm install --ignore-scripts
ulimit -c unlimited
next-prepare-macos:
@@ -251,7 +249,6 @@ commands:
ccache --zero-stats --max-size=2G
cmake --build build -j 8 << parameters.build_params >>
ccache --show-stats
- git gc
next-save:
steps:
- save_cache:
@@ -264,14 +261,17 @@ commands:
- ~/.gradle
- run:
name: Collecting artifacts
- when: on_fail
command: |
+ 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
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
+ if ls build/Testing/Temporary/MemoryChecker.*.log 1> /dev/null 2>&1; then cp build/Testing/Temporary/MemoryChecker.*.log /tmp/tests/valgrind; fi
- store_artifacts:
path: /tmp/tests
destination: tests
@@ -685,8 +685,6 @@ jobs:
command: |
run-clang-tidy-8 -quiet -j24 -p build $PWD/src/.*cpp $PWD/platform/.*cpp |tee clang-tidy.log
grep -o \\[[a-z].*-.*[a-z]\] clang-tidy.log |sort |uniq -c |sort -n
- mkdir -p /tmp/tests/clang-tidy
- if [ -f clang-tidy.log ]; then cp clang-tidy.log /tmp/tests/clang-tidy; fi
- next-save
next-build-template:
parameters: