mirror of
https://github.com/boostorg/release-tools.git
synced 2026-01-19 04:42:10 +00:00
update domain for temporary result storage
This commit is contained in:
@@ -19,7 +19,7 @@ git-mirror-and-export.py `pwd`
|
||||
|
||||
# Fetch and expand the documentation
|
||||
rm boost-master-docs.7z
|
||||
curl -s -o boost-master-docs.7z http://boost.cowic.de/rc/boost-master-docs.7z
|
||||
curl -s -o boost-master-docs.7z http://results.boost.org/rc/boost-master-docs.7z
|
||||
rm -rf docs
|
||||
7za x -y boost-master-docs.7z -odocs
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@ def cmnd(x): # execute a command
|
||||
argpsr = argparse.ArgumentParser(
|
||||
description='Inspect Boost source tree and upload results to ftp site',
|
||||
epilog='Example: python inspect.py --user foo --pass bar --file inspect-trunk.html')
|
||||
argpsr.add_argument('--host', help='URL of ftp site. Default: boost.cowic.de',
|
||||
default='boost.cowic.de')
|
||||
argpsr.add_argument('--host', help='URL of ftp site. Default: results.boost.org',
|
||||
default='results.boost.org')
|
||||
argpsr.add_argument('--user', help='User name for ftp site', required=True)
|
||||
argpsr.add_argument('--password', help='Password for ftp site', required=True)
|
||||
argpsr.add_argument('--filename', help='Filename for ftp site.', required=True)
|
||||
|
||||
@@ -204,7 +204,7 @@ parser.add_argument ('-svnURL', dest="svnURL",
|
||||
default="https://svn.boost.org/svn/boost/branches/release",
|
||||
help='subversion URL to fetch (optional; mostly for debugging)')
|
||||
parser.add_argument('-suffix', help='suffix to append to the snapshot name; i.e, rc1')
|
||||
parser.add_argument('--server', dest='server', default="boost.cowic.de", action="store",
|
||||
parser.add_argument('--server', dest='server', default="results.boost.org", action="store",
|
||||
help='ftp server to download docs from and upload snapshots to')
|
||||
parser.add_argument('--user', dest='username', default="", action="store")
|
||||
parser.add_argument('--pass', dest='password', default="", action="store")
|
||||
|
||||
@@ -23,9 +23,9 @@ echo get boost-release-docs.7z >>download_docs.ftp
|
||||
echo bye >>download_docs.ftp
|
||||
|
||||
echo Running ftp script ...
|
||||
ftp -d -n -i -s:download_docs.ftp boost.cowic.de
|
||||
ftp -d -n -i -s:download_docs.ftp results.boost.org
|
||||
|
||||
echo Unpacking 7z file ...
|
||||
7z x -y -odocs_temp boost-release-docs.7z
|
||||
|
||||
echo Download and unpack boost-release-docs.7z complete!
|
||||
echo Download and unpack boost-release-docs.7z complete!
|
||||
|
||||
@@ -23,6 +23,6 @@ echo dir >>inspect.ftp
|
||||
echo bye >>inspect.ftp
|
||||
|
||||
echo Run ftp script...
|
||||
ftp -n -i -s:inspect.ftp boost.cowic.de
|
||||
ftp -n -i -s:inspect.ftp results.boost.org
|
||||
|
||||
echo Inspect script complete
|
||||
|
||||
@@ -52,7 +52,7 @@ echo put posix.tar.bz2 >>posix.ftp
|
||||
echo bye >>posix.ftp
|
||||
|
||||
echo Running ftp script 1 ...
|
||||
ftp -n -i -s:posix.ftp boost.cowic.de
|
||||
ftp -n -i -s:posix.ftp results.boost.org
|
||||
|
||||
echo Creating ftp script 2 ...
|
||||
copy user.txt posix.ftp
|
||||
@@ -64,6 +64,6 @@ echo dir >>posix.ftp
|
||||
echo bye >>posix.ftp
|
||||
|
||||
echo Running ftp script 2 ...
|
||||
ftp -n -i -s:posix.ftp boost.cowic.de
|
||||
ftp -n -i -s:posix.ftp results.boost.org
|
||||
|
||||
echo POSIX snapshot complete!
|
||||
|
||||
@@ -58,7 +58,7 @@ echo put windows.7z >>windows.ftp
|
||||
echo bye >>windows.ftp
|
||||
|
||||
echo Running ftp script 1 ...
|
||||
ftp -n -i -s:windows.ftp boost.cowic.de
|
||||
ftp -n -i -s:windows.ftp results.boost.org
|
||||
|
||||
echo Creating ftp script 2 ...
|
||||
copy user.txt windows.ftp
|
||||
@@ -70,6 +70,6 @@ echo dir >>windows.ftp
|
||||
echo bye >>windows.ftp
|
||||
|
||||
echo Running ftp script 2 ...
|
||||
ftp -n -i -s:windows.ftp boost.cowic.de
|
||||
ftp -n -i -s:windows.ftp results.boost.org
|
||||
|
||||
echo Windows snapshot complete!
|
||||
|
||||
Reference in New Issue
Block a user