This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravisbuild.sh
64 lines (54 loc) · 1.67 KB
/
travisbuild.sh
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
62
63
64
#!/usr/bin/env bash
set -e
export SCHEDULESQL_BUILD_SERIES_NAME="Travis $CC $TRAVIS_SCHEDULESQL_BUILD_TYPE"
export SCHEDULESQL_BUILD_ID=$TRAVIS_JOB_NUMBER
export SCHEDULESQL_BUILD_DATETIME=$(date)
# Use ccache if available
if [ $(which ccache) ]; then
# Re-run compile on pre-processed sources on cache miss
# "It's slower actually, but clang builds fail without it."
export CCACHE_CPP2=true
# Tell CMake of ccache's existence
CACHE_ARGS="-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
echo "Using ccache installed at $(which ccache)"
ccache --max-size=1G
ccache --zero-stats
fi
# Work around a Clang + ccache issue with failing builds by disabling
# precompiled headers. Turn off LTO for faster build speeds
cmake . -DCMAKE_BUILD_TYPE=${TRAVIS_SCHEDULESQL_BUILD_TYPE} \
-DBUILD_TOOLS=Yes \
-DPRECOMPILE_HEADERS=No \
-DSELF_TEST=Yes \
-DUNITY_BUILDS=${TRAVIS_SCHEDULESQL_UNITY_BUILDS-Yes} \
-DWHOLE_PROGRAM_OPTIMISATION=No \
${CACHE_ARGS}
echo "Building..."
cmake --build . --parallel 2
if [ $(which ccache) ]; then
echo "Built with ccache, outputting cache stats..."
ccache --show-stats
fi
echo "Testing..."
ctest --output-on-failure --parallel 2
if [ "$TRAVIS_SCHEDULESQL_BUILD_TYPE" != "COVERAGE" ]; then
chmod +x ScheduleSQL
./ScheduleSQL -c schedulesql.json -t root
cd root
FILE=schedulesql.json
if [ -f "$FILE" ]; then
echo "$FILE exists so it's ok."
else
echi "$FILE do not exist, so it's not ok."
exit 1
fi
cd ..
./ScheduleSQL -d schedulesql.json -t root
cd root
if [ -f "$FILE" ]; then
echo "$FILE exists so it's not ok."
exit 1
else
echo "$FILE do not exist, so it's ok."
fi
fi