ci: skip examples in code-coverage builds
Change-Id: I5d7e2f02f401e296507b21ae09244d7dd0c13525
diff --git a/.jenkins.d/10-build.sh b/.jenkins.d/10-build.sh
index d6a3ee9..e17cdcf 100755
--- a/.jenkins.d/10-build.sh
+++ b/.jenkins.d/10-build.sh
@@ -18,16 +18,16 @@
# Cleanup
./waf --color=yes distclean
- # Build in release mode without tests
- ./waf --color=yes configure
+ # Build in release mode with examples
+ ./waf --color=yes configure --with-examples
./waf --color=yes build
# Cleanup
./waf --color=yes distclean
fi
-# Build in debug mode with tests and examples
-./waf --color=yes configure --debug --with-tests --with-examples $ASAN $COVERAGE
+# Build in debug mode with tests
+./waf --color=yes configure --debug --with-tests $ASAN $COVERAGE
./waf --color=yes build
# (tests will be run against the debug version)