Re: [CMake] Strange behavior with Nightly builds

2012-07-27 Thread norulez
Hello Richard, hello David, sorry for the long response time, I tried to get it working but it doesn't work. I'm trying to describe it in a more detail: 1.) CTestScript.cmake is now configured with set(CTEST_NIGHTLY_START_TIME 3:00:00 UTC) 2.) the windows slave is configured as GMT+2 in the

Re: [CMake] Strange behavior with Nightly builds

2012-06-22 Thread NoRulez
Hello Richard, What is the configured cutoff time for Nightly runs?Did you mean the nightly build time? During which hours does the "continuous" builder run?Between 6 am and 10 pm When does the "nightly" builder run?Nightly build time is configured for 23:00 UTC (11 pm) Which builds do you expect

Re: [CMake] Strange behavior with Nightly builds

2012-06-22 Thread Richard Wackerbarth
On Jun 22, 2012, at 2:09 AM, NoRulez wrote: Hello Richard, What is the configured cutoff time for Nightly runs? Did you mean the nightly build time? I mean this value (for example in CTestConfig.cmake) such as: set(CTEST_NIGHTLY_START_TIME 21:00:00 EDT) or set(CTEST_NIGHTLY_START_TIME

Re: [CMake] Strange behavior with Nightly builds

2012-06-22 Thread Richard Wackerbarth
I made a minor error in my previous posting. I forgot the first run as continuous starts up on the second day. I have make the correction inline below. On Jun 22, 2012, at 2:09 AM, NoRulez wrote: Hello Richard, What is the configured cutoff time for Nightly runs? Did you mean the nightly

Re: [CMake] Strange behavior with Nightly builds

2012-06-21 Thread NoRulez
Has no one an idea on how to do so or is such functionality missing?Thanks in advanceBest RegardsAm 15. Jun 2012 um 08:38 schrieb NoRulez noru...@me.com:Hello David,but the problem is, that the timestamp is one day behind, so this doesn't work and I get previous revisions. (Our nightly build

Re: [CMake] Strange behavior with Nightly builds

2012-06-21 Thread Richard Wackerbarth
From reading this, I get the distinct impression that your are not interpreting the meaning of nightly in the same way that the rest of us are doing so. Let's assume the following: At 15 minutes past each hour, a new commit is added to the repository. For the sake of description, the zeroth

Re: [CMake] Strange behavior with Nightly builds

2012-06-15 Thread NoRulez
Hello David,but the problem is, that the timestamp is one day behind, so this doesn't work and I get previous revisions. (Our nightly build starts at 23:00 and not at 1 am)However is there a way to update to the HEAD revision?Best RegardsAm 14. Jun 2012 um 15:05 schrieb David Cole

Re: [CMake] Strange behavior with Nightly builds

2012-06-14 Thread NoRulez
I think i fond the problem, but I don't know how to solve it.I have the following defined in the CTestScript.cmake:if(${NEED_REPOSITORY_CHECKOUT}) set(CTEST_CHECKOUT_COMMAND "${CTEST_UPDATE_COMMAND} co ${REPOSITORY_URL} \"${CTEST_SOURCE_DIRECTORY}\" -r HEAD")else() set(CTEST_CHECKOUT_COMMAND

Re: [CMake] Strange behavior with Nightly builds

2012-06-14 Thread Richard Wackerbarth
I think that you are missing the point of nightly runs. The idea behind a nightly run is that each build-bot builds the SAME version of the code. Just checking out the HEAD for every build would be submitting one continuous (perhaps it should be called head) build. The version built is whatever

Re: [CMake] Strange behavior with Nightly builds

2012-06-14 Thread David Cole
On Thu, Jun 14, 2012 at 3:07 AM, NoRulez noru...@me.com wrote: I think i fond the problem, but I don't know how to solve it. I have the following defined in the CTestScript.cmake: if(${NEED_REPOSITORY_CHECKOUT}) set(CTEST_CHECKOUT_COMMAND ${CTEST_UPDATE_COMMAND} co ${REPOSITORY_URL}

[CMake] Strange behavior with Nightly builds

2012-06-06 Thread NoRulez
Hello,here is the build process of the build server: 1.) e.g.: last commit at 03:00 pm (svn revision 8) = build is ok2.) The nightly build starts at 10:00 pm (svn revision 7) = build is ok Why is the svn revision before the last commit, it should be 8?3.) In the morning (~ 06:00 am) a continuous

Re: [CMake] Strange behavior with Nightly builds

2012-06-06 Thread Stefan Reuschl
Am 06.06.2012, 08:57 Uhr, schrieb NoRulez noru...@me.com: Hello, here is the build process of the build server: 1.) e.g.: last commit at 03:00 pm (svn revision 8) = build is ok 2.) The nightly build starts at 10:00 pm (svn revision 7) = build is ok Why is the svn revision before the last

Re: [CMake] Strange behavior with Nightly builds

2012-06-06 Thread Richard Wackerbarth
NoRulez, A better question is Why was revision 8 not included in the nightly run? Using one source tree for both continuous and nightly assumes that there will be no continuous runs between the last update incorporated in the nightly run and the time at which the nightly run is performed. It