Re: Preventing Anthill OS to check out
Varban <[email protected]>
| Newsgroups | gmane.comp.java.anthill |
|---|---|
| Message-ID | <[email protected]> |
The file system driver allows you to use a directory as your source control management system. In that case Anthill will not do any checkouts or labeling and assume that whatever is on the disk is what needs to be built. That is why you need to have targets in your build scripts that would take care of updating the source in the directory before building and if needed label the source at the end. You can do that by either calling svn with exec tasks or you could look for ant svn task libraries that would make the process easier for you. Varban Res Pons wrote: > By system driver do you mean to make a system exec call using svn.exe? > Thank you. > > ----Original Message Follows---- > From: Varban <[email protected]> > Reply-To: [email protected], Anthill user list > <anthill-IWHQxnLZ/[email protected]> > To: Anthill user list <anthill-IWHQxnLZ/[email protected]> > Subject: Re: [Anthill] Preventing Anthill OS to check out > Date: Thu, 9 Mar 2006 14:44:57 -0500 > MIME-Version: 1.0 > Received: from lists.urbancode.com ([64.34.169.154]) by > bay0-mc8-f19.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Thu, > 9 Mar 2006 11:52:27 -0800 > Received: (qmail 3100 invoked by uid 510); 9 Mar 2006 19:46:16 -0000 > Received: from anthill-bounces-IWHQxnLZ/[email protected] by > caladin.urbancode.com by uid 504 with qmail-scanner-1.20 (spamassassin: > 2.61. Clear:RC:1(127.0.0.1):. Processed in 0.036871 secs); 09 Mar 2006 > 19:46:16 -0000 > Received: from localhost (HELO caladin.urbancode.com) (127.0.0.1) by > lists.urbancode.com with SMTP; 9 Mar 2006 19:46:16 -0000 > Received: (qmail 3066 invoked by uid 510); 9 Mar 2006 19:46:12 -0000 > Received: from [email protected] by caladin.urbancode.com by uid 504 > withqmail-scanner-1.20 (spamassassin: 2.61. > Clear:RC:0(207.99.47.54):SA:0(0.0/5.0):. Processed in 1.237877 secs); 09 > Mar 2006 19:46:12 -0000 > Received: from host54a.simplicato.com (207.99.47.54)by > lists.urbancode.com with SMTP; 9 Mar 2006 19:46:11 -0000 > Received: from localhost (localhost.simplicato.com [127.0.0.1])by > host54a.simplicato.com (Postfix) with ESMTP id 07FDF6C07BAfor > <anthill-IWHQxnLZ/[email protected]>; Thu, 9 Mar 2006 14:44:55 -0500 (EST) > Received: from host54a.simplicato.com ([127.0.0.1])by localhost > (host54a.simplicato.com [127.0.0.1]) (amavisd-new,port 10024) with ESMTP > id 88069-03 for <anthill-IWHQxnLZ/[email protected]>;Thu, 9 Mar 2006 14:44:54 > -0500 (EST) > Received: from [192.168.1.59] > (dsl093-012-067.cle1.dsl.speakeasy.net[66.93.12.67])by > host54a.simplicato.com (Postfix) with ESMTP id C44166C0471for > <anthill-IWHQxnLZ/[email protected]>; Thu, 9 Mar 2006 14:44:54 -0500 (EST) > X-Message-Info: JGTYoYF78jHzJ4LrJIPkXHy99t1EBb6OP2R4WJDkhOo= > Return-Path: <[email protected]> > Delivered-To: mailman-anthill-IWHQxnLZ/[email protected] > Organization: Urbancode > User-Agent: KMail/1.9.1 > References: <[email protected]> > X-Virus-Scanned: by amavisd-new at simplicato.com > X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on > caladin.urbancode.com > X-Spam-Level: > X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no > version=2.61 > X-BeenThere: anthill-IWHQxnLZ/[email protected] > X-Mailman-Version: 2.1.4 > Precedence: list > List-Id: Anthill user list <anthill.lists.urbancode.com> > List-Unsubscribe: > <http://lists.urbancode.com/mailman/listinfo/anthill>,<mailto:anthill-request-IWHQxnLZ/[email protected]?subject=unsubscribe> > > List-Archive: <http://lists.urbancode.com/pipermail/anthill> > List-Post: <mailto:anthill-IWHQxnLZ/[email protected]> > List-Help: <mailto:anthill-request-IWHQxnLZ/[email protected]?subject=help> > List-Subscribe: > <http://lists.urbancode.com/mailman/listinfo/anthill>,<mailto:anthill-request-IWHQxnLZ/[email protected]?subject=subscribe> > > Errors-To: anthill-bounces-IWHQxnLZ/[email protected] > X-OriginalArrivalTime: 09 Mar 2006 19:52:27.0491 (UTC) > FILETIME=[FE373B30:01C643B2] > > Hi Res, > > you can use the file system driver and have your build scripts do the > repository work any way you want. This way Anthill will do nothing but run > your build scripts and post the results. This however means that you > need to > write the repository tasks and include them in your build script (or a > separate build script that you can call if the build is done via > AnthillOS). > I believe there are many AnthillOS users that have taken this approach when > the driver implementations do not suit their needs. > > Regards, > Varban > > On Thursday 09 March 2006 13:43, Res Pons wrote: > > I need your feedback please. > > > > Is it a good or bad idea to fool AH-os to check out my master build > project > > and from there starts calling other projects ( already checked out) to > > build and at the beging of this master build file make a system exec > call > > to update these working folder before doing the build. This will > shave off > > so much time off my build times. Especailly since AH would like to > clean > > entire working folder and do a fresh complete check out of the repo. > Right > > now my buidls start @12:30 am and end around 5am with so many projects > > being built and growing... > > > > I know Anthill pretty much doesn't like it when within your ant file you > > make it do repository check outs/ins across projects and AH would prefer > > that you set separate property sheets or AH-projects for each > development > > proj. > > > > Now on page 35 of the manual I sse that I could set > > log4j.rootCategory=DEBUG to prevent check outs...but I couldn't get > it to > > work and AH still continued to delete and do fresh check out. > > > > Thanks. > > > > _________________________________________________________________ > > Dont just search. Find. Check out the new MSN Search! > > http://search.msn.click-url.com/go/onm00200636ave/direct/01/ > > > > _______________________________________________ > > Anthill mailing list > > Anthill-IWHQxnLZ/[email protected] > > http://lists.urbancode.com/mailman/listinfo/anthill > _______________________________________________ > Anthill mailing list > Anthill-IWHQxnLZ/[email protected] > http://lists.urbancode.com/mailman/listinfo/anthill > > _________________________________________________________________ > Don’t just search. Find. Check out the new MSN Search! > http://search.msn.click-url.com/go/onm00200636ave/direct/01/ > > _______________________________________________ > Anthill mailing list > Anthill-IWHQxnLZ/[email protected] > http://lists.urbancode.com/mailman/listinfo/anthill