README 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. 1. Update Version information
  2. - change version in CMakeLists.txt
  3. - build on windows, and do a make; make install; make release // this step tags
  4. - this changes cmake_release.sh
  5. * for major release edit Source/cmCPluginAPI.h
  6. NOTES from Brad:
  7. The release scripts are located in CMake and ParaView under the Utilities/Release directory. It is important to run the script obtained by checking out a copy of the corresponding release branch from CVS. Here is a summary of how to use them:
  8. The release_dispatch.sh script has a list of machine names at the top. When run, this script will automatically ssh to these machines to build the releases. Run it like this:
  9. ./release_dispatch.sh clean
  10. ./release_dispatch.sh binary
  11. ./release_dispatch.sh logs
  12. The first line will ssh to all the machines and wipe out any existing release build. The second will ssh to the machines and start the release scripts with output going to a log file. The third line will bring up a whole bunch of xterm windows each showing the log from one of the machines. Therefore you should run this from a prompt with access to an X display. Alternatively you can just look at the log files manually.
  13. After the logs report the job is complete, then the binaries should be sitting on the local machine in the same directory as the scripts. You can run
  14. ./cmake_release.sh remote_source localhost
  15. to get the source tarballs. Then run
  16. ./cmake_release.sh upload
  17. to upload the files to public in the proper FTP directory.
  18. For shannara, the home directory does not have enough disk space to build ParaView. After the "clean" step, you should manually log into the machine and do
  19. rm -rf /disk2/ParaViewReleaseRoot
  20. ln -s /disk2/ParaViewReleaseRoot ~/
  21. For the aix build, you need to manually login to the box and checkout a copy of the Utilities/Release directory. Then run the release script by hand:
  22. ./cmake_release.sh binary_tarball
  23. ./paraview_release.sh binary_tarball
  24. Then in the release root directory there will be a Tarballs subdirectory with the binaries.