summaryrefslogtreecommitdiffstats
path: root/Utilities/Release/release_cmake.sh.in
blob: 3b55bb76eddcb9ad4dfe0d0d7bbd589a10f4cf29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
echo  "remove and create working directory ~/CMakeReleaseDirectory"
rm -rf ~/CMakeReleaseDirectory 
mkdir ~/CMakeReleaseDirectory

check_exit_value()
{
   VALUE="$1"
   if [ "$VALUE" != "0" ]\; then
    echo "error in $2"
    exit 1
   fi      
}

if [ ! -z "@USER_MAKE_RULE_FILE_CONTENTS@" ]\; then
    echo "@USER_MAKE_RULE_FILE_CONTENTS@" > "@USER_MAKE_RULE_FILE@"
    check_exit_value $? "Create User Rule file" || exit 1
fi
echo "Create a directory to build in"
rm -rf ~/CMakeReleaseDirectory/@CMAKE_VERSION@-build
check_exit_value $? "Remove build tree" || exit 1
mkdir ~/CMakeReleaseDirectory/@CMAKE_VERSION@-build
check_exit_value $? "Create build directory" || exit 1
# make sure directory was created
if [ ! -d ~/CMakeReleaseDirectory/@CMAKE_VERSION@-build ]\; then
        echo "Could not create ~/CMakeReleaseDirectory/@CMAKE_VERSION@-build"
        exit -1
fi

echo "Create initial cache"
echo "@INITIAL_CACHE@" > ~/CMakeReleaseDirectory/${CMAKE_VERSION}-build/CMakeCache.txt
check_exit_value $? "Create initial cache" || exit 1

#echo "Login into cvs."
#echo "cmake" | @CVS_COMMAND@ -d ${CVSROOT} login

echo "Checkout the source for @CMAKE_VERSION@"
cd ~/CMakeReleaseDirectory 
@CMAKE_CHECKOUT@ -d ${CMAKE_VERSION} CMake
check_exit_value $? "Checkout cmake source" || exit 1

cd ~/CMakeReleaseDirectory/@CMAKE_VERSION@-build 
echo  "Run cmake bootstrap --parallel=@PROCESSORS@"
../${CMAKE_VERSION}/bootstrap --parallel=@PROCESSORS@
check_exit_value $? "Bootstrap cmake" || exit 1

echo "Build cmake with ${MAKE}"
@MAKE@
check_exit_value $? "Build cmake" || exit 1

echo "Run cmake tests"
@MAKE@ test
check_exit_value $? "Test cmake" || exit 1

echo "Run package"
@MAKE@ package
check_exit_value $? "Package cmake" || exit 1

echo "Create Tar.gz"
./bin/cpack -G TGZ
check_exit_value $? "Create TGZ" || exit 1