From 39f6a80e262a764ec7669b4d65e04124afbf23bd Mon Sep 17 00:00:00 2001 From: Bradley Lowekamp Date: Mon, 1 May 2017 16:02:13 -0400 Subject: [PATCH] ENH: Fix clearing build tree error The CircleCI build ctest script is reporting a error to standard output This patch addresses are CMake Error message produced: Clearing build tree... CMake Error at /home/ubuntu/ITK-dashboard/itk_common.cmake:371 (ctest_empty_binary_directory): ctest_empty_binary_directory problem removing the binary directory: /home/ubuntu/ITK-build Call Stack (most recent call first): /home/ubuntu/ITK-dashboard/circleci.cmake:65 (include) Change-Id: Ib16bcfe7b99b280614344d1d5add6f173400e304 --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 5e286a6a974..d3d3b74de9e 100644 --- a/circle.yml +++ b/circle.yml @@ -40,7 +40,7 @@ dependencies: test: override: - - ctest -V -S "${DASHBOARD_BRANCH_DIRECTORY}/circleci.cmake": + - ctest -V -Ddashboard_no_clean:BOOL=1 -S "${DASHBOARD_BRANCH_DIRECTORY}/circleci.cmake": timeout: 1200 environment: ITK_GLOBAL_DEFAULT_NUMBER_OF_THREAD: 2