summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-05-02 20:32:46 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-05-02 20:32:46 (GMT)
commitadf160029c64e5dcf8f6fb7962c0be9763a9e546 (patch)
tree5aeaae3c8193e369b8c5c2e60ca4f31a5a82c031 /Utilities
parent38373b5d4ca8bf6a5f30d313c96a1e5ef407b7aa (diff)
downloadCMake-adf160029c64e5dcf8f6fb7962c0be9763a9e546.zip
CMake-adf160029c64e5dcf8f6fb7962c0be9763a9e546.tar.gz
CMake-adf160029c64e5dcf8f6fb7962c0be9763a9e546.tar.bz2
ENH: first pass at cmake scripts to create the cmake release
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/Release/dashsun1_release.cmake12
-rw-r--r--Utilities/Release/hythloth_release.cmake4
-rw-r--r--Utilities/Release/release_cmake.cmake83
3 files changed, 99 insertions, 0 deletions
diff --git a/Utilities/Release/dashsun1_release.cmake b/Utilities/Release/dashsun1_release.cmake
new file mode 100644
index 0000000..b28e134
--- /dev/null
+++ b/Utilities/Release/dashsun1_release.cmake
@@ -0,0 +1,12 @@
+set(PROCESSORS 2)
+set(HOST dashsun1)
+set(MAKE "make -j2")
+execute_process(COMMAND ssh ${HOST} pwd RESULT_VARIABLE result OUTPUT_VARIABLE BUILD_DIR)
+message(fatal_error ${BUILD_DIR}/CMakeReleaseDirectory/UserMakeRules.cmake)
+set(INITIAL_CACHE "
+CMAKE_EXE_LINKER_FLAGS:STRING=-Bstatic
+CMAKE_USER_MAKE_RULES_OVERRIDE:STRING=${BINDIR}/UserMakeRules.cmake
+CURSES_LIBRARY:FILEPATH=/usr/lib/libcurses.a
+FORM_LIBRARY:FILEPATH=/usr/lib/libform.a")
+set(USER_MAKE_RULES "SET(CMAKE_DL_LIBS \"-Bdynamic -ldl -Bstatic\")"
+include(release_cmake.cmake)
diff --git a/Utilities/Release/hythloth_release.cmake b/Utilities/Release/hythloth_release.cmake
new file mode 100644
index 0000000..42f06df
--- /dev/null
+++ b/Utilities/Release/hythloth_release.cmake
@@ -0,0 +1,4 @@
+set(PROCESSORS 2)
+set(HOST hythloth)
+set(MAKE "make -j2")
+include(release_cmake.cmake)
diff --git a/Utilities/Release/release_cmake.cmake b/Utilities/Release/release_cmake.cmake
new file mode 100644
index 0000000..5aa20a9
--- /dev/null
+++ b/Utilities/Release/release_cmake.cmake
@@ -0,0 +1,83 @@
+set(CVSROOT ":pserver:anonymous@www.cmake.org:/cvsroot/CMake")
+# used for -j builds
+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 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 ${ARGV0})
+ else(${ARGC} GREATER 2)
+ execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result)
+ endif(${ARGC} GREATER 2)
+ message("${result}")
+ if(${result} GREATER 0)
+ message(FATAL_ERROR "Error running command: ${command}, return value = ${result}")
+ endif(${result} GREATER 0)
+endmacro(remote_command)
+
+if(0)
+# remove and create a directory to work with
+remote_command(
+ "remove and create working directory ~/CMakeReleaseDirectory"
+ "rm -rf ~/CMakeReleaseDirectory && mkdir ~/CMakeReleaseDirectory")
+# login to cvs
+remote_command(
+ "Login into cvs."
+ "cvs -d ${CVSROOT} login" cmake_login)
+# checkout the source
+remote_command(
+ "Checkout the source for ${CMAKE_VERSION}"
+ "cd ~/CMakeReleaseDirectory && cvs -q -z3 -d ${CVSROOT} export -r ${CMAKE_VERSION} -d ${CMAKE_VERSION} CMake")
+# create the build directory
+remote_command(
+ "Create a directory to build in"
+ "rm -rf ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build && mkdir ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build")
+
+# 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")
+
+endif(0)
+
+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 .sh file back from the machine")
+execute_process(COMMAND scp ${HOST}:CMakeReleaseDirectory/${CMAKE_VERSION}-build/*.sh .
+ RESULT_VARIABLE result)