build-farm 367: Change ccache settings on brasilia and caracas.

https://svn.lrde.epita.fr/svn/lrde-tools/trunk/build-farm Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr> Change ccache settings on brasilia and caracas. * buildfarm_worker/brasilia.fns (CCACHE_DIR): Set to /work/build/var/ccache. * buildfarm_worker/caracas.fns: Likewise. * Makefile (status): New target. (.PHONY): Add status. Makefile | 8 +++++++- buildfarm_worker/brasilia.fns | 6 +++--- buildfarm_worker/caracas.fns | 5 +++++ 3 files changed, 15 insertions(+), 4 deletions(-) Index: Makefile --- Makefile (revision 366) +++ Makefile (working copy) @@ -4,4 +4,10 @@ 'cd /work/master && \ svn up' -.PHONY : update +# Check the status of the master's (goa's) copy. +status: + ssh pm@goa \ + 'cd /work/master && \ + svn status' + +.PHONY : update status Index: buildfarm_worker/caracas.fns --- buildfarm_worker/caracas.fns (revision 366) +++ buildfarm_worker/caracas.fns (working copy) @@ -2,6 +2,11 @@ # Used to continuously build Tiger and Vaucanson. +# The ccache dir is located in the /work file system on caracas. As +# ~/.zshenv is not sourced by the build script, this environment +# variable is defined here. +export CCACHE_DIR=/work/build/var/ccache + # Add some programs from /lrde/bin to the PATH. export PATH="/lrde/dev/linux-x86/sarge/autoconf-2.60/bin:$PATH" export PATH="/lrde/dev/linux-x86/sarge/bison-2.2/bin:$PATH" Index: buildfarm_worker/brasilia.fns --- buildfarm_worker/brasilia.fns (revision 366) +++ buildfarm_worker/brasilia.fns (working copy) @@ -1,9 +1,9 @@ # brasilia. -*- shell-script -*- # The ccache dir is located in the /work file system on brasilia. As -# ~/.zshenv is not sourced by the build script, this environment var -# is defined here too. -export CCACHE_DIR=/work/build/ccache +# ~/.zshenv is not sourced by the build script, this environment +# variable is defined here. +export CCACHE_DIR=/work/build/var/ccache # INIT_ICC_VARS # -------------
participants (1)
-
Roland Levillain