From 1b5087105b007e05458d7fa03508cfebaf40c146 Mon Sep 17 00:00:00 2001 From: Noel Eck Date: Mon, 14 May 2018 13:26:34 -0700 Subject: [PATCH] docker-compose.yaml: Default to empty build type Allow targets to specify a CMake build type but do not set a default (removed 'Release'). The CXX flags for Release slow the builds down significantly on Travis-CI (which can hit the time limit for jobs). Signed-off-by: Noel Eck --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 1bb54b75..c8401383 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -16,7 +16,7 @@ services: - BUILDCORDOVA=${BUILDCORDOVA:-OFF} - BUILDSWIGNODE=${BUILDSWIGNODE:-OFF} - BUILDEXAMPLES=${BUILDEXAMPLES:-OFF} - - CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-Release} + - CMAKE_BUILD_TYPE - IPK=${IPK:-OFF} - RPM=${RPM:-OFF} - NPM=${NPM:-OFF}