On 02/13/2015 05:10 AM, Raffi Enficiaud wrote: > 3 build agents (lts14.04, osx10.9 and win7x64) are now running the nightly > with the CMake_TEST_FindMatlab set to ON. > The site name is bambooagent.raffienficiaud @ > https://open.cdash.org/viewSite.php?siteid=11851&project=1¤ttime=1423789200
Those look great! The one test failure on Windows may be because the total path length gets too deep and exceeds some internal MS tool limits of 260 characters. Please move the build to somewhere with a shorter path. Usually I keep mine under 55 characters or so to the top of the build tree. In the two that use the "Unix Makefiles" generator you can also add set(CTEST_BUILD_FLAGS "-j4") # parallel build level In all three dashboard scripts you could add: set(CTEST_TEST_ARGS PARALLEL_LEVEL 4) to get tests to run in parallel. Of course you can set the levels based on the available hardware on each machine. On 02/12/2015 05:36 PM, Raffi Enficiaud wrote:> > - Is there any convention for CTEST_SITE? Would "bambooagent.raffienficiaud" > do? Yes. > - What is the preferred configuration to test? Debug or Release? The Debug you chose will be fine. > - Should I do some configuration on the dashboard? I have not found > anything in particular, except for claiming sites. Nothing more for you. Once these builds have shown up consistently for a few days I'll move them to the Nightly Expected section. > - What architectures should be tested? Anyplace that FindMatlab should be covered. I think the three you've started look good. Thanks, -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake-developers
