snapshot.bat 781 B

1234567891011121314151617181920212223242526
  1. @echo off
  2. rem Run POSIX and Windows snapshots and inspection
  3. rem Copyright 2008 Beman Dawes
  4. rem Distributed under the Boost Software License, Version 1.0.
  5. rem See http://www.boost.org/LICENSE_1_0.txt
  6. rem Must be run in a directory devoted to boost release snapshots
  7. echo Using %BOOST_TRUNK% as boost trunk
  8. time /t
  9. pushd %BOOST_TRUNK%
  10. echo Running svn cleanup on %BOOST_TRUNK%
  11. svn --non-interactive --trust-server-cert cleanup
  12. echo Running svn update on %BOOST_TRUNK%
  13. svn --non-interactive --trust-server-cert up
  14. popd
  15. call %BOOST_TRUNK%\tools\release\snapshot_download_docs.bat
  16. time /t
  17. call %BOOST_TRUNK%\tools\release\snapshot_posix.bat
  18. time /t
  19. call %BOOST_TRUNK%\tools\release\snapshot_windows.bat
  20. time /t
  21. call %BOOST_TRUNK%\tools\release\snapshot_inspection.bat
  22. time /t
粤ICP备19079148号