https://svn.lrde.epita.fr/svn/lrde-tools/trunk/build-farm
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
Add a `cleanup' target for make.
* Makefile (cleanup): New target.
(.PHONY): Add cleanup.
* web/build.pl (hosts): Use uniform naming conventions.
Makefile | 9 ++++++++-
web/build.pl | 12 ++++++------
2 files changed, 14 insertions(+), 7 deletions(-)
Index: web/build.pl
--- web/build.pl (revision 423)
+++ web/build.pl (working copy)
@@ -43,13 +43,13 @@
# and what boxes. Should be in a config file
my (%hosts) = (
'antalya' => "Darwin 7.9 powerpc",
- 'brasilia' => "Debian GNU/Linux sid i386",
- 'caracas' => "Debian GNU/Linux etch i386",
- 'houston' => "Debian GNU/Linux etch i386",
- 'istanbul' => "Debian GNU/Linux 3.1 sarge sparc64",
- 'marvejols' => "Debian GNU/Linux etch i386",
+ 'brasilia' => "Debian GNU/Linux unstable (sid) i386",
+ 'caracas' => "Debian GNU/Linux 4.0 (etch) i386",
+ 'houston' => "Debian GNU/Linux 4.0 (etch) i386",
+ 'istanbul' => "Debian GNU/Linux 3.1 (sarge) sparc64",
+ 'marvejols' => "Debian GNU/Linux 4.0 (etch) i386",
'pau' => "Cygwin Window XP Pro i686",
- 'warszawa' => "Debian GNU/Linux etch i386",
+ 'warszawa' => "Debian GNU/Linux 4.0 (etch) i386",
);
Index: Makefile
--- Makefile (revision 423)
+++ Makefile (working copy)
@@ -13,4 +13,11 @@
'cd /work/master && \
svn status'
-.PHONY : update status install
+# Perform a remote `svn cleanup' on goa.
+cleanup:
+ ssh pm@goa \
+ 'cd /work/master && \
+ svn cleanup'
+
+
+.PHONY : install update status cleanup