Move generation of the eVC, and DMars formats over to the release scripts.
[wxWidgets.git] / distrib / scripts / pre-flight.sh
1 #!/bin/sh
2
3 # cleanup after old build files
4 #if [ -d $WX_TEMP_DIR ]; then
5 # rm -rf $WX_TEMP_DIR
6 #fi
7
8 START_DIR="$PWD"
9 WX_WEB_DIR=$WX_TEMP_DIR/wxWebSite
10 WX_SRC_DIR=$WX_TEMP_DIR/wxWidgets
11
12 # first, grab the latest revision with specified tag
13 if [ ! -d $WX_TEMP_DIR ]; then
14 mkdir $WX_TEMP_DIR
15 fi
16
17 cd $WX_TEMP_DIR
18
19 # just do an update if we started a build but it failed somewhere
20 if [ ! -d $WX_WEB_DIR ]; then
21 cvs -d:pserver:anoncvs:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets login
22 echo "Grabbing wxWebSite sources..."
23 cvs -d:pserver:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets checkout wxWebSite
24 else
25 cd $WX_WEB_DIR
26 cvs update -d
27 fi
28
29 if [ ! -d $WX_SRC_DIR ]; then
30 cvs -d:pserver:anoncvs:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets login
31 echo "Grabbing wx CVS with tag $BUILD_TAG"
32 cvs -d:pserver:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets checkout -r $BUILD_TAG wxWidgets
33 else
34 cd $WX_SRC_DIR
35 cvs update -d
36 fi
37
38 # this is where we will store the wxAll tarball we create
39 if [ ! -d $DISTDIR ]; then
40 mkdir $DISTDIR
41 fi
42
43 #re-bake the bakefiles
44 if [ $rebake = "yes" ]; then
45 cd $WX_SRC_DIR/build/bakefiles
46 bakefile_gen -d ../../distrib/scripts/Bakefiles.release.bkgen
47 fi
48
49 cd $WX_SRC_DIR
50 if [ ! -d $WX_SRC_DIR/deliver ]; then
51 mkdir $WX_SRC_DIR/deliver
52 fi
53
54 # Now generate the mega tarball with everything. We will push this to our build machines.
55
56 cd $WX_TEMP_DIR
57 WX_TARBALL=$WX_TEMP_DIR/wxWidgets-$BUILD_VERSION.tar.gz
58 tar cvzf $WX_TARBALL wxWidgets
59
60 echo "Tarball located at: $WX_TARBALL"
61
62 if [ ! -f $WX_TARBALL ]; then
63 echo "ERROR: wxAll tarball was not created by pre-flight.sh. Build cannot continue."
64 exit 1
65 else
66 cd $START_DIR
67 cp $WX_TARBALL $STAGING_DIR
68 cp -r $WX_WEB_DIR $STAGING_DIR
69
70 echo "Pre-flight complete. Ready for takeoff."
71 fi