Nightly docs broken?

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

Nightly docs broken?

by andrew cooke :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It's possible I've gone to the wrong link or something, but the docs
at http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/library/index.html
don't have all the method info they had yesterday...

Andrew

Re: Nightly docs broken?

by Antonio Cunei :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

andrew cooke wrote:
> It's possible I've gone to the wrong link or something, but the docs
> at http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/library/index.html
> don't have all the method info they had yesterday...
>

Yes, the nightly build failed but scaladoc blissfully tried to extract what
it could anyway.

I'll change the nightly build scripts so that, if the main build fails,
scaladoc is not run.

Toni

Re: Nightly docs broken?

by Andrew Gaydenko :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Tuesday 03 November 2009 14:20:15 Antonio Cunei wrote:

> andrew cooke wrote:
> > It's possible I've gone to the wrong link or something, but the docs
> > at
> > http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/l
> >ibrary/index.html don't have all the method info they had yesterday...
>
> Yes, the nightly build failed but scaladoc blissfully tried to extract what
> it could anyway.
>
> I'll change the nightly build scripts so that, if the main build fails,
> scaladoc is not run.
>
> Toni
>

The thing is, current trunk failes in scaladoc task :-)

Re: Nightly docs broken?

by Antonio Cunei :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Andrew Gaydenko wrote:
> On Tuesday 03 November 2009 14:20:15 Antonio Cunei wrote:
>> I'll change the nightly build scripts so that, if the main build fails,
>> scaladoc is not run.
>>
>
> The thing is, current trunk failes in scaladoc task :-)
>

Right now scaladoc is built in the same ant run as the nightly tests, so if
scaladoc fails the whole thing fails. The resulting files, however, are
copied regardless (both scaladoc and tarballs).

The script will be reorganized in order to split tarballs and scaladoc, and
in order to copy only stuff that succeeds. It should be done in a couple of
days.
Toni


Re: Nightly docs broken?

by Andrew Gaydenko :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Tuesday 03 November 2009 15:59:17 Antonio Cunei wrote:

> Andrew Gaydenko wrote:
> > On Tuesday 03 November 2009 14:20:15 Antonio Cunei wrote:
> >> I'll change the nightly build scripts so that, if the main build fails,
> >> scaladoc is not run.
> >
> > The thing is, current trunk failes in scaladoc task :-)
>
> Right now scaladoc is built in the same ant run as the nightly tests, so if
> scaladoc fails the whole thing fails. The resulting files, however, are
> copied regardless (both scaladoc and tarballs).
>
> The script will be reorganized in order to split tarballs and scaladoc, and
> in order to copy only stuff that succeeds. It should be done in a couple of
> days.
> Toni
>

Toni, do you mean main build.xml script? Currently I use

ant all.clean
ant fastdist

and SCALA_HOME is pointed to dists/latest. At any fail I have to restore
previously backed up dist with last successful build. Will this scenario be
changed?


Andrew

Re: Nightly docs broken?

by Antonio Cunei :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Andrew Gaydenko wrote:

> On Tuesday 03 November 2009 15:59:17 Antonio Cunei wrote:
>> The script will be reorganized in order to split tarballs and scaladoc, and
>> in order to copy only stuff that succeeds. It should be done in a couple of
>> days.
>> Toni
>
> Toni, do you mean main build.xml script? Currently I use
>
> ant all.clean
> ant fastdist
>
> and SCALA_HOME is pointed to dists/latest. At any fail I have to restore
> previously backed up dist with last successful build. Will this scenario be
> changed?
>

Andrew,

The nightly builds that are published on the Scala website are produced by
our Hudson server; only the script that runs on the server will be altered,
nothing in the build.xml file will be touched.
Toni