Could it be because some build are generating unique snapshots ?
I noticed some projects like
wicketstuff-scriptaculous/
wicketstuff-rome/
and maybe more, i haven't checked them all, are generating snapshot
with a timestamp meaning each time they build (which could be a lot if
the are triggered by other builds like wicket) they generate a new jar
instead of overwriting the old snapshot.
Projects on the buildserver must disable unique versions for snapshots
by placing something like the following in there pom.
<distributionManagement>
<snapshotRepository>
<id>repo</id>
<name>Local Bamboo/Tomcat repository</name>
<url>
file:/home/wicket/tomcat/webapps/maven/repository/
</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
<repository>
<id>repo</id>
<name>Local Bamboo/Tomcat repository</name>
<url>
file:/home/wicket/tomcat/webapps/maven/repository/
</url>
</repository>
</distributionManagement>
I don't know if this is causing the problem now (most files i saw were
pretty small) but i will definitely cause problems like this if left
unchecked.
Maurice
On Jan 16, 2008 10:51 AM, Martijn Dashorst <[EMAIL PROTECTED]> wrote:
> It seems that this test fails:
>
> java.lang.RuntimeException: java.io.IOException: No space left on device
> at
> org.apache.wicket.markup.html.link.DownloadLinkTest.testDeleteAfterLink(DownloadLinkTest.java:98)
>
>
> Martijn
>
>
> On 1/16/08, Martijn Dashorst <[EMAIL PROTECTED]> wrote:
> > If we are not going to monitor and maintain our bamboo setup on
> > wicketstuff, shall we just shut it down?
> >
> > I am getting tired of having to manage the box.
> >
> >
> > [INFO]
> > ------------------------------------------------------------------------
> > [ERROR] BUILD ERROR
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Error deploying artifact: Error creating temporary file for
> > deployment: No space left on device
> >
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] For more information, run Maven with the -e switch
> >
> >
> > Martijn
> >
> > --
> > Buy Wicket in Action: http://manning.com/dashorst
> > Apache Wicket 1.3.0 is released
> > Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0
> >
>
>
> --
> Buy Wicket in Action: http://manning.com/dashorst
> Apache Wicket 1.3.0 is released
> Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0
>