From 6a48aa4a0fb5d53206ebf51ef3b8aabc7af1f52c Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Thu, 23 Apr 2020 20:54:50 -0500 Subject: [PATCH] travis: Allow CI config to make check-valgrind Setting MAKE_CHECK_SUFFIX=-valgrind in the environment will cause Travis to make check-valgrind. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0db7432b2..ad906d7f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ install: - ulimit -c unlimited; make -j3 script: - - if [ x${COVERITY_SCAN_BRANCH} != x1 ]; then ulimit -c unlimited; make check; fi + - if [ x${COVERITY_SCAN_BRANCH} != x1 ]; then ulimit -c unlimited; make check${MAKE_CHECK_SUFFIX}; fi after_script: - if [ -n "$COVERAGE" ]; then ../tools/coveralls-tool -O $PWD -S ..; fi