Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/nightly.sh @ 32

Last change on this file since 32 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

  • Property svn:executable set to *
File size: 974 bytes
Line 
1#!/bin/bash
2
3# Copyright 2004, 2005, 2006 Vladimir Prus
4# Distributed under the Boost Software License, Version 1.0.
5# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
6
7# This script create a nightly tarball of Boost.Build V2
8# and updates the web site.
9
10# Create the packages
11set -e
12trap "echo 'Nightly build failed'" ERR
13
14export QTDIR=/usr/share/qt3
15export LC_ALL=C
16export LC_MESSAGES=C
17export LANG=C
18cd /tmp
19rm -rf boost-build
20echo "Checking out sources"
21cvs -d :ext:vladimir_prus@boost.cvs.sourceforge.net:/cvsroot/boost co -P -d  boost-build boost/tools > /tmp/boost_build_checkout_log
22mv /tmp/boost_build_checkout_log boost-build/checkout-log
23cd boost-build/build/v2
24echo "Building packages and uploading docs"
25./roll.sh > ../roll-log 2>&1
26cd ..
27echo "Uploading packages"
28scp boost-build.zip boost-build.tar.bz2 vladimir_prus@shell.sourceforge.net:/home/groups/b/bo/boost/htdocs/boost-build2 > scp-log
29echo "Nightly build successful"
Note: See TracBrowser for help on using the repository browser.