# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User Nate Coraor <nate@bx.psu.edu> # Date 1283441846 14400 # Node ID 833cfa90b33735f4f30f10d0d7e39cbf1a64d6d9 # Parent fa1d4be027649ad4d745c62a053e024fe2db35e9 Add setup of tool-data/shared/jars to the buildbot setup script. --- a/buildbot_setup.sh +++ b/buildbot_setup.sh @@ -20,6 +20,8 @@ case "$OSTYPE" in [ ! -d "$HYPHY" ] && unset HYPHY ;; solaris2.10) + # For the psu-production builder which is Solaris, but jobs run on a + # Linux cluster HYPHY="/galaxy/software/linux2.6-x86_64/hyphy" ;; esac @@ -73,6 +75,8 @@ database/import database/pbs " +JARS="/galaxy/software/jars" + for link in $LINKS; do echo "Linking $link" rm -f tool-data/`basename $link` @@ -85,6 +89,12 @@ if [ -d "$HYPHY" ]; then ln -sf $HYPHY tool-data/HYPHY fi +if [ -d "$JARS" ]; then + echo "Linking $JARS" + rm -f tool-data/shared/jars + ln -sf $JARS tool-data/shared/jars +fi + for sample in $SAMPLES; do file=`echo $sample | sed -e 's/\.sample$//'` echo "Copying $sample to $file"