Re: MySQL instead of Apache Derby

2007-04-19 Thread Anoop kumar V

I do not think you can access the embedded derby db while continuum (or any
other application) is using it. You would have to shut down continuum and
then connect derby using a sql client like squirrel sql or install derby and
use its client to connect. as mentioned in this post:

http://mail-archives.apache.org/mod_mbox/maven-continuum-users/200701.mbox/[EMAIL
 PROTECTED]

On 4/19/07, Ben Mills <[EMAIL PROTECTED]> wrote:


Greetings,

Using Continuum 1.0.3 on Linux (CentOS 4.4)

I assume the default install/setup for Continuum 1.0.3 uses Derby in
an "embedded environment in which only a single application can
access a database at one time, and no network access occurs. When an
application starts an instance of Derby within its JVM, the
application runs in an embedded environment and loading the embedded
driver starts Derby."

1) Has anyone out there configured continuum to use MySQL instead of
Derby?
2) Or perhaps the Derby client/server environment?

3) Can I access the Derby tables in any way with the default
(embedded) setup?

Many thanks in advance.

Regards,
Ben






Re: Schedule I've created isn't working

2007-03-30 Thread Anoop kumar V

Continuum would only build if there was anything checked into your source
control repository. If you are using Continuum 1.0.3 then there is no way to
force a build even if there is no new code / changes to the VCS. Not sure if
v1.1 has a way though.

If that is indeed the case then you can use your build tool to basically
commit a dummy file at the end of the build - so that the next time
Continuum wakes up at the scheduled time, it will see the change and kick
start a build.

HTH,
Anoop

On 3/29/07, Chris Russell <[EMAIL PROTECTED]> wrote:


Hello,

I've gotten everything working in Continuum if I do a "Build All" (tests
run, app is deployed).

My issue is that my build process is not running when I think it should.
I'm using the DEFAULT_SCHEDULE, and the entry looks like this: 0 40 * * *
?

I thought that this would build my projects every hour at 40 min past
the hour (i.e. 09:40, 10:40...). Thats not what its doing. I even tried
restarting Continuum after I made the change (should I need to do that?).

I'm certain it something simple, but I'm just not seeing it.

Any help is appreciated.

Chris





--
Thanks and best regards,
Anoop


CVS author field in build result

2007-02-01 Thread Anoop kumar V

Something happened and after a bounce of continuum, I fail to see the author
field value (the comments do appear) in the email notifications after a
successful build. the email has something like this:

Online report :
http://localhost:8080/continuum/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/16/buildId/1991
Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Thu, 1 Feb 2007 16:46:02 -0500
 Finished at: Thu, 1 Feb 2007 16:49:28 -0500
 Total time: 3m 26s
 Build Trigger: Forced
 Exit code: 0
 Building machine hostname: anoop
 Operating system : SunOS(unknown)
 Java version : 1.4.2_06(Sun Microsystems Inc.)

Changes
  author:  *** empty log message ***
project/config/Reporting/OnDemand/CapOne-
EmailTemplate-OnDemandManagerReportReturned.xml
  author:  email template
project/config/Reporting/OnDemand/CapOne-
EmailTemplate-OnDemandManagerReportReturned.xml
  author:  *** empty log message ***
project/config/Reporting/OnDemand/CapOne-
EmailTemplate-OnDemandReportCreated.xml
  author:  email template
project/config/Reporting/OnDemand/CapOn

Can someone help me in pointing out what change I would have done which
caused this to break? All I remm doing was to enable the buildresult to be
included in the email notifications by modifying the application.xml file.

We use CVS and have around 6 projects configured on the same continuum
server.

--
Thanks and best regards,
Anoop


Re: Change a user role to build admin

2007-01-29 Thread Anoop kumar V

Sure..I will.

Anoop

On 1/29/07, Wendy Smoak <[EMAIL PROTECTED]> wrote:


On 1/29/07, Anoop kumar V <[EMAIL PROTECTED]> wrote:

> Never mind - I figured this out.
>
> Here are the steps I needed to follow:

Thanks. :)  Would you care to update the FAQ with this information?
Currently our only good suggestion is to make sure you have more than
one admin account.

http://docs.codehaus.org/display/CONTINUUMUSER/Continuum+FAQ

--
Wendy





--
Thanks and best regards,
Anoop


Re: Change a user role to build admin

2007-01-29 Thread Anoop kumar V

Never mind - I figured this out.

Here are the steps I needed to follow:

  1. Install Derby db from
  http://db.apache.org/derby/derby_downloads.html
  2. Set DERBY_HOME like: export DERBY_HOME=~/derby/db-
  derby-10.2.2.0-bin/
  3. set classpath like this: export
  CLASSPATH=$DERBY_HOME/lib/derby.jar:$DERBY_HOME/lib/derbytools.jar
  4. Then run ij to start the derby database, like this: ~/derby/db-
  derby-10.2.2.0-bin/bin/ij
  5. I got the ij> prompt.
  6. Ensure that continuum is shut down. I use kill 
  7. At the ij> prompt, start the db, like this: connect
  'jdbc:derby:/usr/local/continuum-1.0.3/apps/continuum/database';
  8. ij> connect 'jdbc:derby:/usr/local/continuum-1.0.3
  /apps/continuum/database';
  ij> select * from sa.continuumuser;
  9. Next modify the data using a simple sql, like this:
  ij> describe sa.continuumuser;
  COLUMN_NAME
  |TYPE_NAME|DEC&|NUM&|COLUM&|COLUMN_DEF|CHAR_OCTE&|IS_NULL&

  --
  ACCOUNT_ID  |INTEGER  |0   |10  |10|NULL  |NULL
  |NO
  EMAIL   |VARCHAR  |NULL|NULL|255   |NULL  |510
  |YES
  FULL_NAME   |VARCHAR  |NULL|NULL|255   |NULL  |510
  |YES
  GROUP_ID_OID|INTEGER  |0   |10  |10|NULL  |NULL
  |YES
  GUEST   |CHAR |NULL|NULL|1 |NULL  |2
  |NO
  HASHED_PASSWORD |VARCHAR  |NULL|NULL|255   |NULL  |510
  |YES
  MODEL_ENCODING  |VARCHAR  |NULL|NULL|255   |NULL  |510
  |YES
  USERNAME|VARCHAR  |NULL|NULL|255   |NULL  |510
  |YES

  8 rows selected
  ij> UPDATE SA.CONTINUUMUSER set GROUP_ID_OID=1 where ACCOUNT_ID = 6;
  1 row inserted/updated/deleted
  ij> commit;
  ij> exit;


Thanks,
Anoop
On 1/29/07, Anoop kumar V <[EMAIL PROTECTED]> wrote:


I have lost the password to the only continuum admin. But I do have a lot
of other users. Instead of going through sha1 password hashing etc, I think
I can just change one of the existing users role to build admin and use that
to reset the admin's password. How do I do that?

I know I can log into the derby db as sa.. but dont know how to log in to
derby. Thanks.

--
Thanks and best regards,
Anoop





--
Thanks and best regards,
Anoop


Change a user role to build admin

2007-01-29 Thread Anoop kumar V

I have lost the password to the only continuum admin. But I do have a lot of
other users. Instead of going through sha1 password hashing etc, I think I
can just change one of the existing users role to build admin and use that
to reset the admin's password. How do I do that?

I know I can log into the derby db as sa.. but dont know how to log in to
derby. Thanks.

--
Thanks and best regards,
Anoop


Re: Build has been in enqueued status for almost 18 hours

2007-01-26 Thread Anoop kumar V

funnily, all the other builds were also blocked.. they were just enqueued. I
did not want to build all, so I deleted the first project which was causing
the enqueued build and recreated it again. But as soon as recreated 9and
before I hit build), it started checking out code into a new folder. Is that
expected?

Well - when I hit build, even the new project was enqueued - so no builds
were going through.

Finally I restarted continuum and now all builds are running just fine.

I think it would be good to have an option of de-queuing a build that has
been enqueued.

Thanks,
Anoop

On 1/26/07, Emmanuel Venisse <[EMAIL PROTECTED]> wrote:


You can try to restart your continuum. if the state doesn't change aftert
the restart, click the 'build all' button.

I don't think it's a pb with the msn notifier.

Emmanuel

Anoop kumar V a écrit :
> Here is the log:
>
> 250 2.0.0 l0PLI3TW028009 Message accepted for delivery
> QUIT
> 2007-01-25 16:18:06,173 [Thread-2] INFO  MsnClient - Connection. Waiting
> for
> the response
> 2007-01-25 16:18:07,793 [MSN Channel(NS)] INFO  MsnClient - Connected.
> 2007-01-25 16:21:41,725 [SocketListener0-6] INFO  Continuum
> 2007-01-25 16:21:41,725 [SocketListener0-6] INFO  Continuum - Enqueuing
> 'CapOne
> AutoProv (TEST)' (Build definition id=10).
> 2007-01-25 16:28:19,556 [SocketListener0-6] ERROR VelocityComponent -
> RHS of
> #set statement is null. Context will not be modified.
> screens/ProjectBuild.vm [line 103, column 3]
> 2007-01-26 09:36:14,422 [SocketListener0-11] INFO  Action:login  -
> Trying to
> log in 'admin'.
> username: admin
>
> I think the previous build failed in the notifications step.  had setup
> some
> msn IM notifications and for some reason it could not connect to the MSN
> accounts. ( Isee in the logs that it connected eventually) But since
> then it
> has been in the enqueued stage.
>
> What can I do to tell it to move along...  ( I have now removed the msn
> notifications, but still no go)
>
>





--
Thanks and best regards,
Anoop


Build has been in enqueued status for almost 18 hours

2007-01-26 Thread Anoop kumar V

Here is the log:

250 2.0.0 l0PLI3TW028009 Message accepted for delivery
QUIT
2007-01-25 16:18:06,173 [Thread-2] INFO  MsnClient - Connection. Waiting for
the response
2007-01-25 16:18:07,793 [MSN Channel(NS)] INFO  MsnClient - Connected.
2007-01-25 16:21:41,725 [SocketListener0-6] INFO  Continuum
2007-01-25 16:21:41,725 [SocketListener0-6] INFO  Continuum - Enqueuing 'CapOne
AutoProv (TEST)' (Build definition id=10).
2007-01-25 16:28:19,556 [SocketListener0-6] ERROR VelocityComponent - RHS of
#set statement is null. Context will not be modified.
screens/ProjectBuild.vm [line 103, column 3]
2007-01-26 09:36:14,422 [SocketListener0-11] INFO  Action:login  - Trying to
log in 'admin'.
username: admin

I think the previous build failed in the notifications step.  had setup some
msn IM notifications and for some reason it could not connect to the MSN
accounts. ( Isee in the logs that it connected eventually) But since then it
has been in the enqueued stage.

What can I do to tell it to move along...  ( I have now removed the msn
notifications, but still no go)


--
Thanks and best regards,
Anoop


Re: Committer name in build report

2006-11-28 Thread Anoop kumar V

This is something that is not working for me too. When I read the features,
I thot that this was included. We use CVS and the committer has never been
displayed on the report.

Anoop

On 11/28/06, Ronald Pieterse <[EMAIL PROTECTED]> wrote:


I do have english output and all developers are defined in the pom so I
don't really know what's going on. I am using CVS.
Nothing strange in the logs either...

Emmanuel Venisse wrote:
> Normally, the scm output parser in clearcase maven-scm provider works
> fine, but maybe the output in different between each clearcase version.
>
> Emmanuel
>
> David Roussel a écrit :
>> This wasn't working for me either, but I assumed it was just a
ClearCase
>> SCM maven plugin issue.  I did have english output and all the
>> developers defined in the pom.
>>
>> Would you expect the clearcase plugin to work this?
>>
>> Thanks
>>
>> David
>>
>> On Mon, 27 Nov 2006 16:06:10 +0100, "Emmanuel Venisse"
>> <[EMAIL PROTECTED]> said:
>>> You need to have an english output from your scm and developers
defined
>>> in your pom.
>>>
>>> Emmanuel
>>>
>>> Ronald Pieterse a écrit :
 In some issues on Nabble I read that it is default to get the
 committer's name in the build report. I'm using 1.0.3 but I do not
 see the name of the committer in the build report. Is there
 something I can set or reset to get this working?

 THNX.




>>
>>
>>
>







--
Thanks and best regards,
Anoop


Re: Release date for Continuum 1.2?

2006-10-25 Thread Anoop kumar V

Ohh yes - my bad - I meant 1.1!! I was not even thinking of 1.2 (yet!!) ;-)

Thanks... So somewhere in Jan... that is good.

best,
-Anoop

On 10/25/06, Jesse McConnell <[EMAIL PROTECTED]> wrote:


well, since 1.1 isn't released yet1.2 will be a bit after that :)

but a for 1.1 release I would hazard a guess of around the beginning
of the new year, there is a thread on here detailing the general
things we want to get wrapped up before actually settling 1.1 release.

jesse

On 10/25/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> Can anyone please tell me when is the release date for the next version
of
> Continuum (1.2)? I know it is going to be a major release, but could not
> exactly tell the date of the release from the website.
>
> --
> Thanks and best regards,
> Anoop
>
>


--
jesse mcconnell
[EMAIL PROTECTED]





--
Thanks and best regards,
Anoop


Release date for Continuum 1.2?

2006-10-25 Thread Anoop kumar V

Can anyone please tell me when is the release date for the next version of
Continuum (1.2)? I know it is going to be a major release, but could not
exactly tell the date of the release from the website.

--
Thanks and best regards,
Anoop


Re: Continuum abruptly stopped

2006-10-09 Thread Anoop kumar V
h logger 'org.codehaus.plexus.jabber.JabberClient' 11438046.
There was no such logger 'org.codehaus.plexus.scheduler.Scheduler' 11438046.
There was no such logger 'org.codehaus.plexus.formica.FormManager' 11438046.
There was no such logger '
org.codehaus.plexus.summit.pipeline.valve.Valve:org.codehaus.plexus.summit.pipeline.valve.ResolverValve'
11438046.
There was no such logger 'workingCopy' 11438046.
There was no such logger '
org.apache.maven.continuum.notification.ContinuumNotificationDispatcher'
11438046.
There was no such logger 'org.codehaus.plexus.action.Action:deploy-artifact'
11438046.
There was no such logger 'org.codehaus.plexus.action.Action:login' 11438046.
There was no such logger 'org.apache.maven.project.MavenProjectBuilder'
11438046.
There was no such logger '
org.codehaus.plexus.formica.validation.Validator:cron' 11438046.
There was no such logger 'org.apache.maven.scm.manager.ScmManager' 11438046.
There was no such logger '
org.codehaus.plexus.action.Action:update-project-from-working-directory'
11438046.
There was no such logger 'org.codehaus.plexus.i18n.I18N' 11438046.
There was no such logger '
org.apache.maven.artifact.transform.ArtifactTransformation:latest' 11438046.
[INFO] Stopping XML-RPC service.

On 10/9/06, Wayne Fay <[EMAIL PROTECTED]> wrote:


Attachments are generally not accepted/forwarded on this list, so
you'll need to send in-line.

Wayne

On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
>
>
> On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> > Here is some more log...attached
> >
> >
> >
> > Anoop
> >
> >
> > On 10/9/06, Jesse McConnell < [EMAIL PROTECTED]> wrote:
> > > ya, I don't think 100 lines back is enough for that, could you get
> > > some more before the Stopping Jetty bit would be good
> > >
> > > On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> > > > I dont know what killed the process.. Actually looking more at the
> same logs
> > > > it seems that the process was killed before the no such logger
> errors..
> > > >
> > > > Anoop
> > > >
> > > > On 10/9/06, Jesse McConnell <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > no such logger is normal I believe...what killed the process?
> > > > >
> > > > > On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> > > > > > Here are the last 100 lines of nohup.out. Seems to say "There
was
> no
> > > > > such
> > > > > > logger"
> > > > > >
> > > > > > $ tail -100 nohup.out
> > > > > > 10:56:33.135 EVENT  Stopped HttpContext[/]
> > > > > > 10:56:33.136 EVENT  Stopped
> [EMAIL PROTECTED]
> > > > > > [INFO] Stopping servlet container service.
> > > > > > [INFO] Undeploying 'continuum'.
> > > > > > 2006-09-25 10:56:33,136 [Thread-8]
> > > > > INFO  TaskQueueExecutor:check-out-project
> > > > > > - Executor thread got shutdown signal.
> > > > > > 2006-09-25 10:56:33,152 [Thread-0]
> > > > > INFO  Continuum  -
> > > > > > Continuum stopped.
> > > > > > 2006-09-25 10:56:33,152 [Thread-8]
> > > > > INFO  TaskQueueExecutor:check-out-project
> > > > > > - Waiting until task executor 'check-out-project' is idling...
> > > > > > 2006-09-25 10:56:33,153 [Thread-3]
> > > > > INFO  TaskQueueExecutor:check-out-project
> > > > > > - Executor thread 'check-out-project' exited.
> > > > > > There was no such logger '
> > > > > >
> org.codehaus.plexus.formica.validation.Validator:default'
> 11438046.
> > > > > > There was no such logger '
> > > > > >
> org.apache.maven.continuum.execution.ContinuumBuildExecutor:shell'
> > > > > 11438046.
> > > > > > There was no such logger '
> > > > > >
> org.codehaus.plexus.formica.validation.Validator:required '
> 11438046.
> > > > > > There was no such logger '
> > > > > >
> org.codehaus.plexus.taskqueue.TaskQueue:check-out-project'
> 11438046.
> > > > > > There was no such logger '
> > > > > >
> > > > >
>
org.codehaus.plexus.summit.pipeline.valve.Valve:org.apache.maven.continuum.

Re: Continuum abruptly stopped

2006-10-09 Thread Anoop kumar V
On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
Here is some more log...attachedAnoopOn 10/9/06, Jesse McConnell <
[EMAIL PROTECTED]> wrote:
ya, I don't think 100 lines back is enough for that, could you getsome more before the Stopping Jetty bit would be good
On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:> I dont know what killed the process.. Actually looking more at the same logs
> it seems that the process was killed before the no such logger errors..
>> Anoop>> On 10/9/06, Jesse McConnell <[EMAIL PROTECTED]> wrote:
> >> > no such logger is normal I believe...what killed the process?
> >> > On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:> > > Here are the last 100 lines of 
nohup.out. Seems to say "There was no
> > such> > > logger"> > >> > > $ tail -100 nohup.out> > > 10:56:33.135 EVENT  Stopped HttpContext[/]> > > 10:56:33.136 EVENT  Stopped [EMAIL PROTECTED]

> > > [INFO] Stopping servlet container service.> > > [INFO] Undeploying 'continuum'.> > > 2006-09-25 10:56:33,136 [Thread-8]> > INFO  TaskQueueExecutor:check-out-project

> > > - Executor thread got shutdown signal.> > > 2006-09-25 10:56:33,152 [Thread-0]> > INFO  Continuum  -> > > Continuum stopped.> > > 2006-09-25 10:56:33,152 [Thread-8]
> > INFO  TaskQueueExecutor:check-out-project> > > - Waiting until task executor 'check-out-project' is idling...> > > 2006-09-25 10:56:33,153 [Thread-3]> > INFO  TaskQueueExecutor:check-out-project
> > > - Executor thread 'check-out-project' exited.> > > There was no such logger '> > > org.codehaus.plexus.formica.validation.Validator:default' 11438046.> > > There was no such logger '
> > > org.apache.maven.continuum.execution.ContinuumBuildExecutor:shell'> > 11438046.> > > There was no such logger '> > > org.codehaus.plexus.formica.validation.Validator:required

' 11438046.> > > There was no such logger '> > > org.codehaus.plexus.taskqueue.TaskQueue:check-out-project' 11438046.> > > There was no such logger '> > >> > 
org.codehaus.plexus.summit.pipeline.valve.Valve:org.apache.maven.continuum.web.pipeline.valve.ContinuumViewContextValve
> > '> > > 11438046.> > > There was no such logger '> > > org.apache.maven.continuum.buildcontroller.BuildController' 11438046.> > > There was no such logger '
org.apache.maven.continuum.scm.ContinuumScm'> > > 11438046.> > > There was no such logger '> > > org.codehaus.plexus.formica.validation.Validator:pattern-date' 11438046.> > > There was no such logger '
> > > org.apache.maven.continuum.utils.WorkingDirectoryService' 11438046.> > > There was no such logger '> > > org.apache.maven.artifact.resolver.ArtifactResolver' 11438046.> > > There was no such logger '
> > org.apache.maven.continuum.xmlrpc.ContinuumXmlRpc'> > > 11438046.> > > There was no such logger '> > > org.codehaus.plexus.formica.validation.Validator:credit-card' 11438046.
> > > There was no such logger 'org.codehaus.plexus.summit.pipeline.Pipeline'> > > 11438046.> > > There was no such logger '> > > org.apache.maven.continuum.web.context.ViewContextPopulator

' 11438046.> > > There was no such logger '> > > org.codehaus.plexus.summit.resolver.Resolver:classic' 11438046.> > > There was no such logger '> > > org.apache.maven.continuum.execution.manager.BuildExecutorManager

'> > 11438046.> > > There was no such logger '> > org.codehaus.plexus.notification.RecipientSource'> > > 11438046.> > > There was no such logger 'org.codehaus.plexus.action.Action:cam

'> > 11438046.> > > There was no such logger '> > > org.apache.maven.continuum.initialization.ContinuumInitializer'> > 11438046.> > > There was no such logger '

> > > org.codehaus.plexus.formica.validation.Validator:safe-path' 11438046.> > > There was no such logger '> > > org.apache.maven.continuum.build.settings.SchedulesActivator' 11438046.

> > > There was no such logger '> > > org.apache.maven.continuum.execution.ContinuumBuildExecutor:maven-1'> > > 11438046.> > > There was no such logger 'org.codehaus.plexus.jdo.JdoFactory

' 11438046.> &g

Build rollback

2006-09-12 Thread Anoop kumar V

Hi All,

I was wondering if Continuum offers a way of automated rollback of a failed
build? This would be a very high priority requirement when using Continuum
on production systems, where in the event of a build failure, the continuous
integration tool would just revert back to the last successful build,
thereby avoiding a production outage.

--
Thanks and best regards,
Anoop


Re: CVS Blame mechanism in 1.0.3

2006-09-12 Thread Anoop kumar V

The last bullet on this page:
http://maven.apache.org/continuum/continuum-features.html says that Blame
mechanism is available as a feature. But I do not see it. DO I need to turn
it on somehow? Can somebody please help me in pointing me in the right
direction?

We use CVS with Ant to build.

Thanks,
Anoop

On 9/7/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:


Hi,

We use Continuum 1.0.3. It is a great and very focussed product - thank
you, developers.

We use CVS as our SCM - but when a build fails, we only see a list of
changed files and no other information about those files - like who checked
it in - comments etc..

I read somewhere that the blame mechanism works in 1.0.3 - Is there some
special configuration I need to do - or maybe tweak my cvs.. please let me
know.

--
Thanks and best regards,
Anoop





--
Thanks and best regards,
Anoop


Re: How to set: No Scheduled build | Only triggered build

2006-09-11 Thread Anoop kumar V

Ohh really??

I have this issue - we have a dev env and a test env. The DEV is more or
less like an integration environment for all developers. The TEST env is
where we finally push code for testing by a separate testing team

We have set these 2 envs as 2 different projects in Continuum. The latest
from CVS is picked up and a build is made for each.

But if a release is going on, and the test team is testing a release (ON
TEST), we wouldnt want to build / deploy into TEST (and mess up the env) -
but it is ok if a build happens on DEV. So we all agreed (TEST and DEV
teams) that we will henceforth use Continuum to do only 'on demand' builds
(only if triggered by the user)and there would be no scheduled builds.

How can I work around this issue? One way as I have mentioned below is to
specify a very large quiet period
The other option maybe is to maintain a branch in CVS which will be used
only for TEST, and merge from HEAD into this BRANCH just when we want to
build / deploy into stuff..

Is there some other easier way that I might not have thought about? (like
maybe I can tweak the cron intervals to ensure that a build never happens??
Our testing cycle never goes beyond a week!)

Thanks a lot,
Anoop

On 9/12/06, Barrie Treloar <[EMAIL PROTECTED]> wrote:


I don't think this feature is available currently.

On 9/12/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> Hi - Can somebody please help me a bit?
>
> Thanks,
> Anoop
>
> On 9/11/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> >
> > Actually - the other way I have tried (not sure if it works yet) is to
> > just disable all the schedules that I have. So that would only let a
user
> > click on the build-now link to build. Otherwise a build would never
happen.
> >
> > -Anoop
> >
> > On 9/11/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi Continuum users,
> > >
> > > What is the best way to set the build schedule as never. Only when a
> > > user triggers, should the build happen??
> > >
> > > As of now, I have created a new schedule with the quiet period as a
very
> > > large time: 99.
> > >
> > > But this is not foolproof. Is there an option I can set?
> > >
> > > --
> > > Thanks and best regards,
> > > Anoop
> > >
> >
> >
> >
> > --
> > Thanks and best regards,
> > Anoop
> >
>
>
>
> --
> Thanks and best regards,
> Anoop
>
>





--
Thanks and best regards,
Anoop


Re: How to set: No Scheduled build | Only triggered build

2006-09-11 Thread Anoop kumar V

Hi - Can somebody please help me a bit?

Thanks,
Anoop

On 9/11/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:


Actually - the other way I have tried (not sure if it works yet) is to
just disable all the schedules that I have. So that would only let a user
click on the build-now link to build. Otherwise a build would never happen.

-Anoop

On 9/11/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:
>
> Hi Continuum users,
>
> What is the best way to set the build schedule as never. Only when a
> user triggers, should the build happen??
>
> As of now, I have created a new schedule with the quiet period as a very
> large time: 99.
>
> But this is not foolproof. Is there an option I can set?
>
> --
> Thanks and best regards,
> Anoop
>



--
Thanks and best regards,
Anoop





--
Thanks and best regards,
Anoop


Re: How to set: No Scheduled build | Only triggered build

2006-09-11 Thread Anoop kumar V

Actually - the other way I have tried (not sure if it works yet) is to just
disable all the schedules that I have. So that would only let a user click
on the build-now link to build. Otherwise a build would never happen.

-Anoop

On 9/11/06, Anoop kumar V <[EMAIL PROTECTED]> wrote:


Hi Continuum users,

What is the best way to set the build schedule as never. Only when a user
triggers, should the build happen??

As of now, I have created a new schedule with the quiet period as a very
large time: 99.

But this is not foolproof. Is there an option I can set?

--
Thanks and best regards,
Anoop





--
Thanks and best regards,
Anoop


How to set: No Scheduled build | Only triggered build

2006-09-11 Thread Anoop kumar V

Hi Continuum users,

What is the best way to set the build schedule as never. Only when a user
triggers, should the build happen??

As of now, I have created a new schedule with the quiet period as a very
large time: 99.

But this is not foolproof. Is there an option I can set?

--
Thanks and best regards,
Anoop


Anybody have a prez for continuum

2006-09-10 Thread Anoop kumar V

Hi,

We have just adopted Continuum as the continuous build manager for some of
our projects. And I have bee given the responsibility of giving a
presentation about Continuum for about 15-20 mins. Was wondering if anyone
has and can share some prez / doc for Continuum and I can enhance the same
for my prez.

The small problem I am facing is that we went live last week with Continuum
and it seems so straightforward and simple a product that I might have shown
people most of what Continuum is.  I think I will include a slide for
enhancements planned for 1.1 - seems like a major release.

I can share back the enhanced prez if necessary.
--
Thanks and best regards,
Anoop


CVS Blame mechanism in 1.0.3

2006-09-07 Thread Anoop kumar V

Hi,

We use Continuum 1.0.3. It is a great and very focussed product - thank you,
developers.

We use CVS as our SCM - but when a build fails, we only see a list of
changed files and no other information about those files - like who checked
it in - comments etc..

I read somewhere that the blame mechanism works in 1.0.3 - Is there some
special configuration I need to do - or maybe tweak my cvs.. please let me
know.

--
Thanks and best regards,
Anoop