|
|
@@ -16,7 +16,7 @@ build_all()
|
|
|
update_tools()
|
|
|
{
|
|
|
cwd=`pwd`
|
|
|
- cd ${1}/boost
|
|
|
+ cd boost
|
|
|
svn up
|
|
|
cd "${cwd}"
|
|
|
}
|
|
|
@@ -26,10 +26,14 @@ build_results()
|
|
|
cwd=`pwd`
|
|
|
cd ${1}
|
|
|
root=`pwd`
|
|
|
- boost=${root}/boost
|
|
|
+ boost=${cwd}/boost
|
|
|
+ case ${1} in
|
|
|
+ trunk) tag=trunk ;;
|
|
|
+ release) tag=branches/release ;;
|
|
|
+ esac
|
|
|
python "${boost}/tools/regression/xsl_reports/boost_wide_report.py" \
|
|
|
--locate-root="${root}" \
|
|
|
- --tag=${1} \
|
|
|
+ --tag=${tag} \
|
|
|
--expected-results="${boost}/status/expected_results.xml" \
|
|
|
--failures-markup="${boost}/status/explicit-failures-markup.xml" \
|
|
|
--comment="" \
|
|
|
@@ -49,4 +53,4 @@ upload_results()
|
|
|
ssh beta.boost.org bunzip2 /home/grafik/www.boost.org/testing/incoming/${1}.zip.bz2
|
|
|
}
|
|
|
|
|
|
-build_all trunk
|
|
|
+build_all ${1}
|