Last change
on this file since 69 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
|
Rev | Line | |
---|
[29] | 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 |
---|
| 11 | set -e |
---|
| 12 | trap "echo 'Nightly build failed'" ERR |
---|
| 13 | |
---|
| 14 | export QTDIR=/usr/share/qt3 |
---|
| 15 | export LC_ALL=C |
---|
| 16 | export LC_MESSAGES=C |
---|
| 17 | export LANG=C |
---|
| 18 | cd /tmp |
---|
| 19 | rm -rf boost-build |
---|
| 20 | echo "Checking out sources" |
---|
| 21 | cvs -d :ext:vladimir_prus@boost.cvs.sourceforge.net:/cvsroot/boost co -P -d boost-build boost/tools > /tmp/boost_build_checkout_log |
---|
| 22 | mv /tmp/boost_build_checkout_log boost-build/checkout-log |
---|
| 23 | cd boost-build/build/v2 |
---|
| 24 | echo "Building packages and uploading docs" |
---|
| 25 | ./roll.sh > ../roll-log 2>&1 |
---|
| 26 | cd .. |
---|
| 27 | echo "Uploading packages" |
---|
| 28 | scp boost-build.zip boost-build.tar.bz2 vladimir_prus@shell.sourceforge.net:/home/groups/b/bo/boost/htdocs/boost-build2 > scp-log |
---|
| 29 | echo "Nightly build successful" |
---|
Note: See
TracBrowser
for help on using the repository browser.