]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/all/build-osx
use wxMin
[wxWidgets.git] / wxPython / distrib / all / build-osx
CommitLineData
36e91097 1#!/bin/bash
e4bb5998 2#----------------------------------------------------------------------
36e91097
RD
3
4set -o errexit
36e91097 5
e4bb5998
RD
6# read the config variables from the file given on the command line
7. $1
8
9
10host=$2
11flavor=$3
12
13if [ $skiposx != yes ]; then
14 # test if the target machine is online
15 if ping -q -c1 -w1 $host > /dev/null; then
16 echo " The $host machine is online, OSX-$flavor build continuing..."
17 else
18 echo "The $host machine is **OFFLINE**, skipping the OSX-$flavor build."
19 exit 0
20 fi
21
22 echo "Copying source files and build script..."
23 ssh root@$host "mkdir -p $OSX_BUILD && rm -rf $OSX_BUILD/* || true"
24
25 scp $STAGING_DIR/wxPython-src-$VERSION.tar.gz \
26 $STAGING_DIR/wxPython-docs-$VERSION.tar.gz \
27 $STAGING_DIR/wxPython-demo-$VERSION.tar.gz \
28 distrib/all/do-build-osx \
29 root@$host:$OSX_BUILD
30
31 echo "Running build script on $host..."
32 wxdir=$OSX_BUILD/wxPython-src-$VERSION
33 cmd=./do-build-osx
34 ssh root@$host "cd $OSX_BUILD && $cmd $wxdir $OSX_BUILD $skipclean $VERSION $flavor $PYVER && rm $cmd"
35
36 echo "Fetching the results..."
37 scp "root@$host:$OSX_BUILD/wxPython*-osx*" $STAGING_DIR
38 ssh root@$host "rm $OSX_BUILD/wxPython*-osx*"
36e91097
RD
39fi
40