[glib-networking/mcatanzaro/lsan-crash] CI: run tests under asan only once



commit fc4a80b6434916488e19d0c17eb3f2df6eb03339
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Fri May 17 12:31:05 2019 -0500

    CI: run tests under asan only once
    
    LeakSanitizer is crashing occasionally on the CI. Let's reduce the odds
    of this happening by running the tests under asan only once per run.
    
    Additionally, let's be a bit less aggressive with repeating the tests to
    try to finish more quickly.
    
    Sort of fixes #86

 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c97f7db..4574406 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,10 @@ fedora-x86_64:
             -Dwerror=true
             build/
     - ninja -C build/
-    - meson test -v -C build/ --repeat=1000
+    - meson test -v -C build/
+    - meson --reconfigure -Db_sanitize=none build/
+    - ninja -C build/
+    - meson test -v -C build/ --repeat=500
     - meson install -C build/
   artifacts:
     paths:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]