aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-22 20:30:58 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-22 20:30:58 +0000
commitfc02aadade2de1cabd75246fcea342b8ba1354f3 (patch)
treed4ce9247ede97f6e9e683343cb76c3dcafed1362
parent35367731732cac057c330fae98d6815d3f3a9702 (diff)
created two new nightly builds after the puredyne+pd-extended meeting
svn path=/trunk/; revision=8859
-rwxr-xr-xscripts/auto-build/pd-main+libs-auto-builder.sh96
-rwxr-xr-xscripts/auto-build/pd-puredyne-auto-builder.sh96
2 files changed, 192 insertions, 0 deletions
diff --git a/scripts/auto-build/pd-main+libs-auto-builder.sh b/scripts/auto-build/pd-main+libs-auto-builder.sh
new file mode 100755
index 00000000..93aff320
--- /dev/null
+++ b/scripts/auto-build/pd-main+libs-auto-builder.sh
@@ -0,0 +1,96 @@
+#!/bin/sh
+# this script is the first attempt to have an automated updater and builder
+
+# the source dir where this script is
+SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
+. $SCRIPT_DIR/auto-build-common
+
+# the name of this script
+SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
+
+BUILD_DIR=.
+case $SYSTEM in
+ linux)
+ BUILD_DIR=linux_make
+ echo "Configuring to use $BUILD_DIR on GNU/Linux"
+ ;;
+ darwin)
+ BUILD_DIR=darwin_app
+ echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
+ ;;
+ mingw*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on MinGW/Windows"
+ ;;
+ cygwin*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
+ ;;
+ *)
+ echo "ERROR: Platform $SYSTEM not supported!"
+ exit
+ ;;
+esac
+
+
+# convert into absolute path
+cd `echo $0 | sed 's|\(.*\)/.*$|\1|'`/../..
+auto_build_root_dir=`pwd`
+echo "root: $auto_build_root_dir"
+
+# let rsync handle the cleanup with --delete
+rsync -a --delete rsync://128.238.56.50/distros/pd-main+libs/ \
+ ${auto_build_root_dir}/
+
+cd "${auto_build_root_dir}/packages/$BUILD_DIR"
+make -C "${auto_build_root_dir}/packages" set_version
+make test_locations
+make package_clean
+make install && make package
+
+
+upload_build ()
+{
+ platform_folder=$1
+ build_folder=$2
+ archive_format=$3
+
+ archive="${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format}"
+
+ echo "upload specs $1 $2 $3"
+ echo "Uploading $archive"
+ upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
+ case $SYSTEM in
+ mingw*)
+ test -e ${archive} && /c/cygwin/bin/sh --login -c \
+ "rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}" &&\
+ echo SUCCESS
+ ;;
+ *)
+ test -e ${archive} && rsync -a ${archive} \
+ rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \
+ echo SUCCESS
+ ;;
+ esac
+}
+
+
+case $SYSTEM in
+ linux)
+ if [ -x /usr/bin/dpkg-deb ]; then
+ upload_build linux_make . deb
+ else
+ upload_build linux_make build tar.bz2
+ fi
+ ;;
+ darwin)
+ upload_build darwin_app . dmg
+ ;;
+ mingw*)
+ upload_build win32_inno Output exe
+ ;;
+ cygwin*)
+ upload_build win32_inno Output exe
+ ;;
+esac
+
diff --git a/scripts/auto-build/pd-puredyne-auto-builder.sh b/scripts/auto-build/pd-puredyne-auto-builder.sh
new file mode 100755
index 00000000..24851f5c
--- /dev/null
+++ b/scripts/auto-build/pd-puredyne-auto-builder.sh
@@ -0,0 +1,96 @@
+#!/bin/sh
+# this script is the first attempt to have an automated updater and builder
+
+# the source dir where this script is
+SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
+. $SCRIPT_DIR/auto-build-common
+
+# the name of this script
+SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
+
+BUILD_DIR=.
+case $SYSTEM in
+ linux)
+ BUILD_DIR=linux_make
+ echo "Configuring to use $BUILD_DIR on GNU/Linux"
+ ;;
+ darwin)
+ BUILD_DIR=darwin_app
+ echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
+ ;;
+ mingw*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on MinGW/Windows"
+ ;;
+ cygwin*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
+ ;;
+ *)
+ echo "ERROR: Platform $SYSTEM not supported!"
+ exit
+ ;;
+esac
+
+
+# convert into absolute path
+cd `echo $0 | sed 's|\(.*\)/.*$|\1|'`/../..
+auto_build_root_dir=`pwd`
+echo "root: $auto_build_root_dir"
+
+# let rsync handle the cleanup with --delete
+rsync -a --delete rsync://128.238.56.50/distros/pd-puredyne/ \
+ ${auto_build_root_dir}/
+
+cd "${auto_build_root_dir}/packages/$BUILD_DIR"
+#make -C "${auto_build_root_dir}/packages" set_version
+make test_locations
+make package_clean
+make install && make package
+
+
+upload_build ()
+{
+ platform_folder=$1
+ build_folder=$2
+ archive_format=$3
+
+ archive="${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format}"
+
+ echo "upload specs $1 $2 $3"
+ echo "Uploading $archive"
+ upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
+ case $SYSTEM in
+ mingw*)
+ test -e ${archive} && /c/cygwin/bin/sh --login -c \
+ "rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}" &&\
+ echo SUCCESS
+ ;;
+ *)
+ test -e ${archive} && rsync -a ${archive} \
+ rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \
+ echo SUCCESS
+ ;;
+ esac
+}
+
+
+case $SYSTEM in
+ linux)
+ if [ -x /usr/bin/dpkg-deb ]; then
+ upload_build linux_make . deb
+ else
+ upload_build linux_make build tar.bz2
+ fi
+ ;;
+ darwin)
+ upload_build darwin_app . dmg
+ ;;
+ mingw*)
+ upload_build win32_inno Output exe
+ ;;
+ cygwin*)
+ upload_build win32_inno Output exe
+ ;;
+esac
+