test

View: New views
4 Messages — Rating Filter:   Alert me  

test

by Bassem Srouji :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

This is a simple to see if I  am able to post to the list.

 

Please ignore

 

--
Bassem Srouji
Sr. Software Developer | Presagis

T. +1 514 341.3874 X322 F. +1 514 341.8018


Visit Presagis at booth #2501 at I/ITSEC 2008


DISCLAIMER: This e-mail message is for the sole use of the intended recipient(s) and may contain confidential and/or proprietary information. Do not read, copy, or disseminate this message unless you are the addressee. Any unauthorized review, use, disclosure or distribution is strictly prohibited. If you have received this message in error, please contact the sender by reply e-mail and delete the original and any copies from your system.

AVERTISSEMENT : Ce courriel s’adresse exclusivement au(x) destinataire(s) mentionné(s) et peut contenir de l’information confidentielle et/ou de nature exclusive. Ne pas lire, copier ou transmettre à quiconque ce courriel sauf si vous en êtes le destinataire. Il est strictement interdit de réviser, utiliser, transmettre ou distribuer ce courriel sans autorisation préalable. Si vous avez reçu ce message par erreur, veuillez communiquer avec l’expéditeur en répondant à ce courriel et en supprimant le courriel original et toutes les copies enregistrées sur votre système.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Cruisecontrol-user mailing list
Cruisecontrol-user@...
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user

Start a build twice day on a fixed time.

by Bassem Srouji :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

Hi,

 

I have the following project in cruise control which end up to be a dailybuild at 18:00 only if something changed in the repository. Now, I want to make it to build twice a day once at launchtime 12:00 and once at 18:00.  Keeping the restriction that I need at least one modification.

 

   <project name="Main-DailyBuild-All" requireModification="true">

      <P4labelincrementer port="${p4.port}" client="${p4.client}" user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.scripts}" noSync="true"/>

      <modificationset ignoreFiles="vp_changelist.h">

         <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.code}" />

      </modificationset>

      <schedule>

         <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild" time="1800">

            <property name="build.target" value="build_all_dev"/>

         </ant>

      </schedule>

   </project>

 

 

There’s this solution that I came with, but it doesn’t work

      <modificationset ignoreFiles="vp_changelist.h">

         <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.code}" />

   <timebuild username="bldadmin" time="1200"/>

   <timebuild username="bldadmin" time="1800"/>

      </modificationset>

 

And this solution and I am going to try it today. I am still waiting to see if it will work.

<modificationset>

   <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.code}" />

</modificationset>

   <schedule>

   <composite>

      <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild" time="1200">

         <property name="build.target" value="build_all_dev" />

      </ant>

      <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild" time="1800">

         <property name="build.target" value="build_all_dev" />

      </ant>

   </composite>

</schedule>

 

Any suggestion will be appreciated

 

Thanks

Bassem

 

--
Bassem Srouji
Sr. Software Developer | Presagis

T. +1 514 341.3874 X322 F. +1 514 341.8018


Visit Presagis at booth #2501 at I/ITSEC 2008


DISCLAIMER: This e-mail message is for the sole use of the intended recipient(s) and may contain confidential and/or proprietary information. Do not read, copy, or disseminate this message unless you are the addressee. Any unauthorized review, use, disclosure or distribution is strictly prohibited. If you have received this message in error, please contact the sender by reply e-mail and delete the original and any copies from your system.

AVERTISSEMENT : Ce courriel s’adresse exclusivement au(x) destinataire(s) mentionné(s) et peut contenir de l’information confidentielle et/ou de nature exclusive. Ne pas lire, copier ou transmettre à quiconque ce courriel sauf si vous en êtes le destinataire. Il est strictement interdit de réviser, utiliser, transmettre ou distribuer ce courriel sans autorisation préalable. Si vous avez reçu ce message par erreur, veuillez communiquer avec l’expéditeur en répondant à ce courriel et en supprimant le courriel original et toutes les copies enregistrées sur votre système.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Cruisecontrol-user mailing list
Cruisecontrol-user@...
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user

Re: Start a build twice day on a fixed time.

by Jeffrey Fredrick-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> And this solution and I am going to try it today. I am still waiting to see
> if it will work.

That should work.  I it is just what I was going to suggest.

Not critical, but if you wanted to remove duplication between the two
ant builder entries you could have a preconfigured builder where you
just add the times.  Something like:

<plugin name="cleanbuild"
  classname="net.sourceforge.cruisecontrol.builders.AntBuilder"
  buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild">
  <property name="build.target" value="build_all_dev" />
</plugin>

Then your modification set could be:

<schedule>
  <cleanbuild time="1200"/>
  <cleanbuild time="1800"/>
</schedule>


Jtf

--
http://ci-guys.com
http://blog.jeffreyfredrick.com


On Thu, Dec 4, 2008 at 8:59 AM, Bassem Srouji
<Bassem.Srouji@...> wrote:

> Hi,
>
>
>
> I have the following project in cruise control which end up to be a
> dailybuild at 18:00 only if something changed in the repository. Now, I want
> to make it to build twice a day once at launchtime 12:00 and once at 18:00.
> Keeping the restriction that I need at least one modification.
>
>
>
>    <project name="Main-DailyBuild-All" requireModification="true">
>
>       <P4labelincrementer port="${p4.port}" client="${p4.client}"
> user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.scripts}"
> noSync="true"/>
>
>       <modificationset ignoreFiles="vp_changelist.h">
>
>          <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
>       </modificationset>
>
>       <schedule>
>
>          <ant buildfile="${CruiseControl.dir}\wrapper.xml"
> target="cleanbuild" time="1800">
>
>             <property name="build.target" value="build_all_dev"/>
>
>          </ant>
>
>       </schedule>
>
>    </project>
>
>
>
>
>
> There's this solution that I came with, but it doesn't work
>
>       <modificationset ignoreFiles="vp_changelist.h">
>
>          <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
>    <timebuild username="bldadmin" time="1200"/>
>
>    <timebuild username="bldadmin" time="1800"/>
>
>       </modificationset>
>
>
>
> And this solution and I am going to try it today. I am still waiting to see
> if it will work.
>
> <modificationset>
>
>    <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
> </modificationset>
>
>    <schedule>
>
>    <composite>
>
>       <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild"
> time="1200">
>
>          <property name="build.target" value="build_all_dev" />
>
>       </ant>
>
>       <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild"
> time="1800">
>
>          <property name="build.target" value="build_all_dev" />
>
>       </ant>
>
>    </composite>
>
> </schedule>
>
>
>
> Any suggestion will be appreciated
>

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Cruisecontrol-user mailing list
Cruisecontrol-user@...
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user

Re: Start a build twice day on a fixed time.

by Bassem Srouji :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Excellent that works perfectly

Thanks




--
Bassem Srouji
Sr. Software Developer | Presagis

T. +1 514 341.3874 X322  F. +1 514 341.8018

Visit Presagis at booth #2501 at http://www.presagis.com/about_us/events/listing/i_itsec_2008/

DISCLAIMER: This e-mail message is for the sole use of the intended recipient(s) and may contain confidential and/or proprietary information. Do not read, copy, or disseminate this message unless you are the addressee. Any unauthorized review, use, disclosure or distribution is strictly prohibited. If you have received this message in error, please contact the sender by reply e-mail and delete the original and any copies from your system.

AVERTISSEMENT : Ce courriel s’adresse exclusivement au(x) destinataire(s) mentionné(s) et peut contenir de l’information confidentielle et/ou de nature exclusive. Ne pas lire, copier ou transmettre à quiconque ce courriel sauf si vous en êtes le destinataire. Il est strictement interdit de réviser, utiliser, transmettre ou distribuer ce courriel sans autorisation préalable. Si vous avez reçu ce message par erreur, veuillez communiquer avec l’expéditeur en répondant à ce courriel et en supprimant le courriel original et toutes les copies enregistrées sur votre système.
-----Original Message-----

From: Jeffrey Fredrick [mailto:jeffrey.fredrick@...]
Sent: Thursday, December 04, 2008 6:25 PM
To: cruisecontrol-user@...
Subject: Re: [Cruisecontrol-user] Start a build twice day on a fixed time.

> And this solution and I am going to try it today. I am still waiting to see
> if it will work.

That should work.  I it is just what I was going to suggest.

Not critical, but if you wanted to remove duplication between the two
ant builder entries you could have a preconfigured builder where you
just add the times.  Something like:

<plugin name="cleanbuild"
  classname="net.sourceforge.cruisecontrol.builders.AntBuilder"
  buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild">
  <property name="build.target" value="build_all_dev" />
</plugin>

Then your modification set could be:

<schedule>
  <cleanbuild time="1200"/>
  <cleanbuild time="1800"/>
</schedule>


Jtf

--
http://ci-guys.com
http://blog.jeffreyfredrick.com


On Thu, Dec 4, 2008 at 8:59 AM, Bassem Srouji
<Bassem.Srouji@...> wrote:

> Hi,
>
>
>
> I have the following project in cruise control which end up to be a
> dailybuild at 18:00 only if something changed in the repository. Now, I want
> to make it to build twice a day once at launchtime 12:00 and once at 18:00.
> Keeping the restriction that I need at least one modification.
>
>
>
>    <project name="Main-DailyBuild-All" requireModification="true">
>
>       <P4labelincrementer port="${p4.port}" client="${p4.client}"
> user="${p4.user}" passwd="${p4.passwd}" view="${p4.view.scripts}"
> noSync="true"/>
>
>       <modificationset ignoreFiles="vp_changelist.h">
>
>          <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
>       </modificationset>
>
>       <schedule>
>
>          <ant buildfile="${CruiseControl.dir}\wrapper.xml"
> target="cleanbuild" time="1800">
>
>             <property name="build.target" value="build_all_dev"/>
>
>          </ant>
>
>       </schedule>
>
>    </project>
>
>
>
>
>
> There's this solution that I came with, but it doesn't work
>
>       <modificationset ignoreFiles="vp_changelist.h">
>
>          <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
>    <timebuild username="bldadmin" time="1200"/>
>
>    <timebuild username="bldadmin" time="1800"/>
>
>       </modificationset>
>
>
>
> And this solution and I am going to try it today. I am still waiting to see
> if it will work.
>
> <modificationset>
>
>    <p4 port="${p4.port}" client="${p4.client}" user="${p4.user}"
> passwd="${p4.passwd}" view="${p4.view.code}" />
>
> </modificationset>
>
>    <schedule>
>
>    <composite>
>
>       <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild"
> time="1200">
>
>          <property name="build.target" value="build_all_dev" />
>
>       </ant>
>
>       <ant buildfile="${CruiseControl.dir}\wrapper.xml" target="cleanbuild"
> time="1800">
>
>          <property name="build.target" value="build_all_dev" />
>
>       </ant>
>
>    </composite>
>
> </schedule>
>
>
>
> Any suggestion will be appreciated
>

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Cruisecontrol-user mailing list
Cruisecontrol-user@...
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user


------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Cruisecontrol-user mailing list
Cruisecontrol-user@...
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user