Re: [Bulk] Re: Build Not required
"Res Pons" <[email protected]> Sun, 04 Jun 2006 10:42:37 -0700
| Newsgroups | gmane.comp.java.anthill |
|---|---|
| Message-ID | <[email protected]> |
For this very reason and also the fact that someone decided for the rest of us if there's no rev changes, a build therefore is not necessary regardless whether we would still want it or not in Anthill OS....I check in a dummy build.number file into my projects every night, so AH is forced to do automated builds. ----Original Message Follows---- From: gnugy <[email protected]> Reply-To: Anthill user list <anthill-IWHQxnLZ/[email protected]> To: Anthill user list <anthill-IWHQxnLZ/[email protected]> Subject: Re: [Bulk] Re: [Anthill] Build Not required Date: Fri, 02 Jun 2006 17:48:46 -0400 MIME-Version: 1.0 Received: from lists.urbancode.com ([64.34.169.154]) by bay0-mc6-f17.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 2 Jun 2006 14:48:57 -0700 Received: (qmail 30071 invoked by uid 510); 2 Jun 2006 21:48:59 -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.021285 secs); 02 Jun 2006 21:48:59 -0000 Received: from localhost (HELO caladin.urbancode.com) (127.0.0.1) by lists.urbancode.com with SMTP; 2 Jun 2006 21:48:59 -0000 Received: (qmail 30045 invoked by uid 510); 2 Jun 2006 21:48:58 -0000 Received: from [email protected] by caladin.urbancode.com by uid 504 withqmail-scanner-1.20 (spamassassin: 2.61. Clear:RC:0(206.190.36.81):SA:0(0.0/5.0):. Processed in 0.617921 secs); 02 Jun 2006 21:48:58 -0000 Received: from smtp103.rog.mail.re2.yahoo.com (206.190.36.81)by lists.urbancode.com with SMTP; 2 Jun 2006 21:48:57 -0000 Received: (qmail 26972 invoked from network); 2 Jun 2006 21:48:52 -0000 Received: from unknown (HELO ?192.168.1.100?)([email protected]@70.29.203.81 with plain)by smtp103.rog.mail.re2.yahoo.com with SMTP; 2 Jun 2006 21:48:52 -0000 X-Message-Info: LsUYwwHHNt1Enu+rK2N7WAXLUxcqz2vzQ4wvj44mGtM= Return-Path: <[email protected]> Delivered-To: mailman-anthill-QRS84+L55VVJU0hlZIk5wmXnswh1EIUO@public.gmane.org DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com;h=Received:Message-ID:Date:From:User-Agent:X-Accept-Language:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding;b=4XxzlSxEie5L4dOaHRoabsr8RHRmwQekF5aAHpiWegGi4OavGFYp877QHMC1lp8g5YN6bhjLlqjU84T/DWU0WIkUg1HXWvCDUTyvNzoDc72he74MTaDi+BL4tinNQ1HpzFI+Gw1zOE8K0hI6LRbqnat5Ku67Kf0GyYp+GaQf5hM=; User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en References: <2791ac1b0606021013r717c7973i829769b73e0a09f2-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> <[email protected]><2791ac1b0606021154o4efed9cahe59784dc461ae4c8-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 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: 02 Jun 2006 21:48:57.0414 (UTC) FILETIME=[59A59660:01C6868E] Are you by any chance using the SubversionRepositoryAdapter? If you are I had the same problem a few months back that boiled down to a problem with a regular expression in the getRevisionsSince() method. If this is the case post back here and I'll dig up the expression that should fix things. -- Philip. Marcio Ribeiro wrote: >but now I've added blank lines on a java source file and commited, changing >the revision... the scheduled build still doesnt work. > >On 6/2/06, *Eric Minick * <[email protected] <mailto:[email protected]>> >wrote: > > Marcio, > > The logic in the build manager works like this (in psuedo code): > > checkoutProject(); > > revisionList = getRevisions(); > > if (revisionList.isEmpty()) { > log( "Build Not required") > } > > if (build.isForced() OR revisionList.isNotEmpty()) { > build(); > } > else { > log("Build Not Required); > } > > So if you are seeing two "Build Not Required" messages, it is because > there are no revisions and the build was not flagged as being forced. > Currently, the schedules do not support always forcing builds > which may > be the source of your problem. Scheduled builds are always managed by > the presence of revisions. Ad hoc builds may be forced though. > > -- Eric > > I found the double Build Not Required messages a bit confusing and not > terribly useful. I've gone ahead and changed the first to simply > be, "No > revisions detected". > > > > Marcio Ribeiro wrote: > > > Hi, > > my schedules are not ok... even using the force build option, > when the > > build is done everything goes fine, but after the checkout > appear two > > messages: > > > > is project up to date? > > Build Not required > > Build Not required > > > > > > > > What's happening??? > > > > >------------------------------------------------------------------------ > > > >_______________________________________________ > >Anthill mailing list > >Anthill-IWHQxnLZ/[email protected] <mailto:Anthill-IWHQxnLZ/[email protected]> > >http://lists.urbancode.com/mailman/listinfo/anthill > <http://lists.urbancode.com/mailman/listinfo/anthill> > > > > > > _______________________________________________ > Anthill mailing list > Anthill-IWHQxnLZ/[email protected] <mailto: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 > > _______________________________________________ Anthill mailing list Anthill-IWHQxnLZ/[email protected] http://lists.urbancode.com/mailman/listinfo/anthill _________________________________________________________________ On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement