| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- set(CVSROOT ":pserver:[email protected]:/cvsroot/CMake")
- get_filename_component(SCRIPT_PATH "${CMAKE_CURRENT_LIST_FILE}" PATH)
- if(NOT DEFINED INSTALLER_SUFFIX)
- set(INSTALLER_SUFFIX "*.sh")
- endif(NOT DEFINED INSTALLER_SUFFIX)
- if(NOT DEFINED PROCESSORS)
- set(PROCESSORS 1)
- endif(NOT DEFINED PROCESSORS)
- if(NOT DEFINED CMAKE_VERSION)
- message(FATAL_ERROR "CMAKE_VERSION not defined")
- endif(NOT DEFINED CMAKE_VERSION)
- if(NOT DEFINED CVS_COMMAND)
- set(CVS_COMMAND cvs)
- endif(NOT DEFINED CVS_COMMAND)
- if("${CMAKE_VERSION}" STREQUAL "CVS")
- set( CMAKE_CHECKOUT "${CVS_COMMAND} -q -z3 -d ${CVSROOT} export -D now ")
- set( CMAKE_VERSION "CurrentCVS")
- else("${CMAKE_VERSION}" STREQUAL "CVS")
- set( CMAKE_CHECKOUT "${CVS_COMMAND} -q -z3 -d ${CVSROOT} export -r ${CMAKE_VERSION} ")
- endif("${CMAKE_VERSION}" STREQUAL "CVS")
- if(NOT HOST)
- message(FATAL_ERROR "HOST must be specified with -DHOST=host")
- endif(NOT HOST)
- if(NOT DEFINED MAKE)
- message(FATAL_ERROR "MAKE must be specified with -DMAKE=\"make -j2\"")
- endif(NOT DEFINED MAKE)
-
- message("Creating CMake release ${CMAKE_VERSION} on ${HOST} with parallel = ${PROCESSORS}")
- # define a macro to run a remote command
- macro(remote_command comment command)
- message("${comment}")
- if(${ARGC} GREATER 2)
- execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result INPUT_FILE ${ARGV2})
- else(${ARGC} GREATER 2)
- execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result)
- endif(${ARGC} GREATER 2)
- if(${result} GREATER 0)
- message(FATAL_ERROR "Error running command: ${command}, return value = ${result}")
- endif(${result} GREATER 0)
- endmacro(remote_command)
- # remove and create a directory to work with
- remote_command(
- "remove and create working directory ~/CMakeReleaseDirectory"
- "rm -rf ~/CMakeReleaseDirectory && mkdir ~/CMakeReleaseDirectory")
- # create user make rule file
- if(DEFINED USER_MAKE_RULE_FILE_CONTENTS)
- remote_command("Create ${USER_MAKE_RULE_FILE}"
- "echo ${USER_MAKE_RULE_FILE_CONTENTS} > ${USER_MAKE_RULE_FILE}" )
- endif(DEFINED USER_MAKE_RULE_FILE_CONTENTS)
- # create the build directory
- remote_command(
- "Create a directory to build in"
- "rm -rf ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && mkdir ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build")
- # set the initial cache
- if(DEFINED INITIAL_CACHE)
- remote_command("Create ${USER_MAKE_RULE_FILE}"
- "echo \"${INITIAL_CACHE}\" > ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build/CMakeCache.txt" )
- endif(DEFINED INITIAL_CACHE)
-
- # login to cvs
- remote_command(
- "Login into cvs."
- "cvs -d ${CVSROOT} login" "${SCRIPT_PATH}/cmake_login")
- # checkout the source
- remote_command(
- "Checkout the source for ${CMAKE_VERSION}"
- "cd ~/CMakeReleaseDirectory && ${CMAKE_CHECKOUT} -d ${CMAKE_VERSION} CMake")
- # now bootstrap cmake
- remote_command(
- "Run cmake bootstrap --parallel=${PROCESSORS}"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ../${CMAKE_VERSION}/bootstrap --parallel=${PROCESSORS}")
- # build cmake
- remote_command(
- "Build cmake with ${MAKE}"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ${MAKE}")
- # build cmake
- remote_command(
- "Build cmake with ${MAKE}"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ${MAKE}")
- # run the tests
- remote_command(
- "Run cmake tests"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ${MAKE} test")
- # package cmake with self-extracting shell script
- remote_command(
- "Package cmake"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ${MAKE} package")
- # package cmake with a tar gz file
- remote_command(
- "Package cmake"
- "cd ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && ./bin/cpack -G TGZ")
- message("copy the .gz file back from the machine")
- execute_process(COMMAND scp ${HOST}:CMakeReleaseDirectory/${CMAKE_VERSION}-build/*.gz .
- RESULT_VARIABLE result)
- message("copy the ${INSTALLER_SUFFIX} file back from the machine")
- execute_process(COMMAND scp ${HOST}:CMakeReleaseDirectory/${CMAKE_VERSION}-build/${INSTALLER_SUFFIX} .
- RESULT_VARIABLE result)
|