From 2243e52612c93ea5c07dfe7a4fb68d2471283ce3 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Sat, 26 Jun 2004 16:39:02 +0000 Subject: Change of compile server and cleanups git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@880 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/tools/sfsnapshot b/tools/sfsnapshot index 122fb71..a383760 100755 --- a/tools/sfsnapshot +++ b/tools/sfsnapshot @@ -3,10 +3,10 @@ # Butchered version of snapshot # Can only run on the shell compile farm server # Will always create a snapshot of HEAD -# If want multiple snapshots, just run with "sfsnapshot {branch} [branch2 ...]" +# If want multiple snapshots, just run with "sfsnapshot [branch ...]" # Assumes: # ssh setup to send to shell.sf.net and $CF without password prompt -# autconf and automake installed on shell cf at v 2.57 & 1.72 and in PATH +# the compile server has all the prerequisites stated at http://nagiosplug.sourceforge.net/developer-guidelines.html # Install in cron with something like: # 47 * * * * $HOME/bin/mail_error -o $HOME/sfsnapshot.out -m tonvoon@users.sf.net sfsnapshot r1_3_0 @@ -27,34 +27,49 @@ function make_dist { ssh $CF < configure.tmp - #mv configure.tmp configure.in + + # TODO: Maybe this should only be run when necessary? tools/setup + ./configure # Make the Nagiosplug dist tarball make dist VERSION=$v$DS RELEASE=snapshot + # May fail if file not generated - do not trap + mv *.gz $IN + # End ssh EOF } # Set working variables PROJECT=nagiosplug + +# This is local to the compile server for faster compile +COMPILE_DIR=/tmp/tonvoon/tmp_snapshot + +# Needs to be on NFS so gz file can be read on the compile shell server IN=${HOME}/tmp_snapshot + +# Where to place the generated files OUT_SERVER="shell.sf.net" OUT="/home/groups/n/na/nagiosplug/htdocs/snapshot" -CF="usf-cf-x86-linux-2" -CF="usf-cf-x86-linux-1" -CF="x86-linux2" -CF="x86-linux1" + +# Make sure prereqs are satisfied on server! +CF="x86-solaris1" DS=`date -u +%Y%m%d%H%M` +# Setup home directory area +[[ ! -d $IN ]] && mkdir -p $IN + # Make dists for HEAD and any others in command parameters make_dist for i in $* ; do @@ -63,7 +78,7 @@ done # Check for *.gz files locally (expect NFS between cf shell server and $CF) set -x -files=$(ls $IN/*/$PROJECT/*.gz 2>/dev/null) +files=$(ls $IN/*.gz 2>/dev/null) [[ -z $files ]] && die "No files created" ssh $OUT_SERVER "rm -f $OUT/*.gz" scp $files $OUT_SERVER:$OUT -- cgit v0.10-9-g596f