You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by bu...@apache.org on 2017/06/21 16:00:42 UTC

buildbot failure in on httpd-trunk

The Buildbot has detected a new failure on builder httpd-trunk while building . Full details are available at:
    https://ci.apache.org/builders/httpd-trunk/builds/682

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_slave6_ubuntu

Build Reason: The Nightly scheduler named 'httpd-trunk-nightly-clean' triggered this build
Build Source Stamp: [branch httpd/httpd/trunk] HEAD
Blamelist: 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot




Re: buildbot failure in on httpd-trunk

Posted by William A Rowe Jr <wr...@rowe-clan.net>.
mod_proxy_balancer.c: In function 'balancer_handler':
mod_proxy_balancer.c:1144:25: error: 'HCHECK_WATHCHDOG_INTERVAL'
undeclared (first use in this function)
             if (ival >= HCHECK_WATHCHDOG_INTERVAL) {
                         ^
mod_proxy_balancer.c:1144:25: note: each undeclared identifier is
reported only once for each function it appears in


On Jun 21, 2017 11:00, <bu...@apache.org> wrote:

> The Buildbot has detected a new failure on builder httpd-trunk while
> building . Full details are available at:
>     https://ci.apache.org/builders/httpd-trunk/builds/682
>
> Buildbot URL: https://ci.apache.org/
>
> Buildslave for this Build: bb_slave6_ubuntu
>
> Build Reason: The Nightly scheduler named 'httpd-trunk-nightly-clean'
> triggered this build
> Build Source Stamp: [branch httpd/httpd/trunk] HEAD
> Blamelist:
>
> BUILD FAILED: failed compile
>
> Sincerely,
>  -The Buildbot
>
>
>
>

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/21/2017 09:06 AM, Jacob Champion wrote:
> Now to figure out why it took until the clean rebuild to catch, instead 
> of the immediate build after the commit.

Oh, there's probably no Makefile dependency on the header, right? Hmm.

--Jacob

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/21/2017 09:12 AM, William A Rowe Jr wrote:
> If two commits occur in a short enough period of time, the datestamp of 
> the newly refreshed source may be earlier than the .o generated by the 
> first update.

The build system won't SVN-update in the middle of a build, and I assume 
the build bots are not set up to use-commit-times (?!) since that would 
break a bunch of stuff. I think this is just an old-fashioned Makefile 
dependency bug.

--Jacob

Re: buildbot failure in on httpd-trunk

Posted by William A Rowe Jr <wr...@rowe-clan.net>.
If two commits occur in a short enough period of time, the datestamp of the
newly refreshed source may be earlier than the .o generated by the first
update.

On Jun 21, 2017 11:06, "Jacob Champion" <ch...@gmail.com> wrote:

> On 06/21/2017 09:00 AM, buildbot@apache.org wrote:
>
>> The Buildbot has detected a new failure on builder httpd-trunk while
>> building . Full details are available at:
>>      https://ci.apache.org/builders/httpd-trunk/builds/682
>>
>
> It works! \o/
>
> Now to figure out why it took until the clean rebuild to catch, instead of
> the immediate build after the commit.
>
> --Jacob
>

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/22/2017 02:00 AM, Stefan Eissing wrote:
> However, running 'make depend' on my dev checkout with a custm --prefix and libs in that prefix location gives errors such as
> 
> /Users/sei/projects/httpd/trunk/modules/filters/mod_xml2enc.c:27:10: fatal error:
>        'libxml/encoding.h' file not found
> #include <libxml/encoding.h>
> 
> So, just adding depend to the dependencies will not work for all of us.

Hmm. If I get some spare cycles, I can see if I can switch us to a more 
precise dependency generation system.

For now, the nightly-clean autobuilds will catch issues like this. I'm 
not sure I want to add `make depend` to the buildbot yet without testing 
its failure modes, and for now the autobuild behavior is good enough, if 
imperfect.

--Jacob

Re: buildbot failure in on httpd-trunk

Posted by Stefan Eissing <st...@greenbytes.de>.
> Am 21.06.2017 um 21:07 schrieb Jacob Champion <ch...@gmail.com>:
> 
> On 06/21/2017 11:58 AM, Jacob Champion wrote:
>> On 06/21/2017 11:31 AM, Yann Ylavic wrote:
>>> The "make depend" (after initial ./configure) is missing?
>> Is dependency generation not part of the default make invocation?
> 
> ...from testing, it looks like it is not. Seems like we should change that, since (I assume) it just bit Jim. And now that I think about it, I'm almost certain it's bitten me before.
> 
> I generally expect a 'make' invocation to Do the Right Thing (tm), from scratch.

+1 (of course)

However, running 'make depend' on my dev checkout with a custm --prefix and libs in that prefix location gives errors such as 

/Users/sei/projects/httpd/trunk/modules/filters/mod_xml2enc.c:27:10: fatal error: 
      'libxml/encoding.h' file not found
#include <libxml/encoding.h>

So, just adding depend to the dependencies will not work for all of us.

-Stefan

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/21/2017 11:58 AM, Jacob Champion wrote:
> On 06/21/2017 11:31 AM, Yann Ylavic wrote:
>> The "make depend" (after initial ./configure) is missing?
> Is dependency generation not part of the default make invocation?

...from testing, it looks like it is not. Seems like we should change 
that, since (I assume) it just bit Jim. And now that I think about it, 
I'm almost certain it's bitten me before.

I generally expect a 'make' invocation to Do the Right Thing (tm), from 
scratch.

--Jacob

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/21/2017 11:31 AM, Yann Ylavic wrote:
> The "make depend" (after initial ./configure) is missing?
Is dependency generation not part of the default make invocation?

--Jacob

Re: buildbot failure in on httpd-trunk

Posted by Yann Ylavic <yl...@gmail.com>.
On Wed, Jun 21, 2017 at 6:06 PM, Jacob Champion <ch...@gmail.com> wrote:
> On 06/21/2017 09:00 AM, buildbot@apache.org wrote:
>>
>> The Buildbot has detected a new failure on builder httpd-trunk while
>> building . Full details are available at:
>>      https://ci.apache.org/builders/httpd-trunk/builds/682
>
>
> It works! \o/
>
> Now to figure out why it took until the clean rebuild to catch, instead of
> the immediate build after the commit.

The "make depend" (after initial ./configure) is missing?


Regards,
Yann.

Re: buildbot failure in on httpd-trunk

Posted by Jacob Champion <ch...@gmail.com>.
On 06/21/2017 09:00 AM, buildbot@apache.org wrote:
> The Buildbot has detected a new failure on builder httpd-trunk while building . Full details are available at:
>      https://ci.apache.org/builders/httpd-trunk/builds/682

It works! \o/

Now to figure out why it took until the clean rebuild to catch, instead 
of the immediate build after the commit.

--Jacob