From 5ae65930f1b2a47fa403ecd5ab8e27ee0cb86f69 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Wed, 2 Jan 2019 17:07:34 +0300 Subject: [PATCH] Corrected CMake-related condition in running CI jobs. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 737f895..773849c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -254,7 +254,7 @@ install: - git submodule update --jobs 4 - cp -r $TRAVIS_BUILD_DIR/* libs/atomic - python tools/boostdep/depinst/depinst.py atomic - - if [ -n "$TEST_CMAKE" ]; then ./bootstrap.sh; ./b2 headers; fi + - if [ -z "$TEST_CMAKE" -o "$TEST_CMAKE" -eq 0 ]; then ./bootstrap.sh; ./b2 headers; fi script: - |-