From 0e567da8d2d599034337b0e7bf602b11fb57dfc0 Mon Sep 17 00:00:00 2001 From: Mat Tyndall Date: Thu, 13 Oct 2016 00:01:17 -0700 Subject: [PATCH 1/2] changed USE_STABLE_GLOBAL_SERVICES to use 1 --- cmake/macros/SetPackagingParameters.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/macros/SetPackagingParameters.cmake b/cmake/macros/SetPackagingParameters.cmake index 531f9a1da2..67aee72738 100644 --- a/cmake/macros/SetPackagingParameters.cmake +++ b/cmake/macros/SetPackagingParameters.cmake @@ -43,7 +43,7 @@ macro(SET_PACKAGING_PARAMETERS) if (BUILD_BRANCH STREQUAL "stable") message(STATUS "The RELEASE_TYPE is PRODUCTION and the BUILD_BRANCH is stable...") set(BUILD_GLOBAL_SERVICES "STABLE") - set(USE_STABLE_GLOBAL_SERVICES TRUE) + set(USE_STABLE_GLOBAL_SERVICES 1) endif() elseif (RELEASE_TYPE STREQUAL "PR") From 1966a710b58c64d5b91ad455c6ee27522395c302 Mon Sep 17 00:00:00 2001 From: Mat Tyndall Date: Thu, 13 Oct 2016 00:12:05 -0700 Subject: [PATCH 2/2] set inital USE_STABLE_GLOBAL_SERVICES to 0 --- cmake/macros/SetPackagingParameters.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/macros/SetPackagingParameters.cmake b/cmake/macros/SetPackagingParameters.cmake index 67aee72738..6ce3c95cdd 100644 --- a/cmake/macros/SetPackagingParameters.cmake +++ b/cmake/macros/SetPackagingParameters.cmake @@ -20,7 +20,7 @@ macro(SET_PACKAGING_PARAMETERS) set(RELEASE_NUMBER $ENV{RELEASE_NUMBER}) string(TOLOWER "$ENV{BRANCH}" BUILD_BRANCH) set(BUILD_GLOBAL_SERVICES "DEVELOPMENT") - set(USE_STABLE_GLOBAL_SERVICES FALSE) + set(USE_STABLE_GLOBAL_SERVICES 0) message(STATUS "The BUILD_BRANCH variable is: ${BUILD_BRANCH}") message(STATUS "The BRANCH environment variable is: $ENV{BRANCH}")