forked from pgRouting/pgrouting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·200 lines (162 loc) · 6.27 KB
/
run.sh
File metadata and controls
executable file
·200 lines (162 loc) · 6.27 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/bin/bash
# /*PGR-GNU*****************************************************************
# File: run.sh
# Copyright (c) 2017 pgRouting developers
# Mail: project@pgrouting.org
# ------
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# ********************************************************************PGR-GNU*/
set -e
DIR=$(git rev-parse --show-toplevel)
pushd "${DIR}" > /dev/null || exit 1
# copy this file into the root of your repository
# adjust to your needs
# This run.sh is intended for 3.x.x
VERSION=$(grep -Po '(?<=project\(PGROUTING VERSION )[^;]+' CMakeLists.txt)
echo "pgRouting VERSION ${VERSION}"
# set up your postgres version, port and compiler (if more than one)
PGVERSION="15"
PGPORT="5432"
PGBIN="/usr/lib/postgresql/${PGVERSION}/bin"
# When more than one compiler is installed
GCC=""
QUERIES_DIRS=$(ls docqueries -1)
TAP_DIRS=$(ls pgtap -1)
QUERIES_DIRS="dijkstra"
TAP_DIRS="dijkstra"
function set_cmake {
# Using all defaults
#cmake ..
# Options Release RelWithDebInfo MinSizeRel Debug
#cmake -DCMAKE_BUILD_TYPE=Debug ..
# Additional debug information
#cmake -DPgRouting_DEBUG=ON -DCMAKE_BUILD_TYPE=Debug ..
# with documentation (like the one the website)
#cmake -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON ..
# with developers documentation
#cmake -DWITH_DOC=ON -DBUILD_DOXY=ON ..
# Building using clang
#CXX=clang++ CC=clang cmake -DPOSTGRESQL_BIN=${PGBIN} -DCMAKE_BUILD_TYPE=Debug -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON -DBUILD_DOXY=OFF ..
# Building with debug on
#cmake -DPOSTGRESQL_BIN=${PGBIN} -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON -DBUILD_DOXY=ON -DBUILD_LATEX=ON -DCMAKE_BUILD_TYPE=Debug -DES=ON -DPROJECT_DEBUG=ON ..
# building languages -DES=ON -DJA=ON -DZH_HANS=ON -DDE=ON -DKO=ON
#cmake -DPOSTGRESQL_BIN=${PGBIN} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON -DBUILD_DOXY=ON -DBUILD_LATEX=ON -DES=ON -DCMAKE_BUILD_TYPE=Debug ..
# check link in documentation
#cmake -DPOSTGRESQL_BIN=${PGBIN} -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON -DES=ON -DLINKCHECK=ON -DCMAKE_BUILD_TYPE=Release ..
# build only english
cmake -DPOSTGRESQL_BIN=${PGBIN} -DDOC_USE_BOOTSTRAP=ON -DWITH_DOC=ON -DBUILD_DOXY=ON -DBUILD_LATEX=ON -DCMAKE_BUILD_TYPE=Debug ..
}
function tap_test {
echo --------------------------------------------
echo pgTap test all
echo --------------------------------------------
dropdb --if-exists -p $PGPORT ___pgr___test___
createdb -p $PGPORT ___pgr___test___
echo $PGPORT
tools/testers/pg_prove_tests.sh vicky $PGPORT
dropdb -p $PGPORT ___pgr___test___
}
function action_tests {
echo --------------------------------------------
echo Update signatures
echo --------------------------------------------
tools/release-scripts/get_signatures.sh -p ${PGPORT}
tools/release-scripts/notes2news.pl
bash tools/scripts/test_signatures.sh
bash tools/scripts/test_shell.sh
bash tools/scripts/test_license.sh
bash tools/scripts/code_checker.sh
tools/testers/doc_queries_generator.pl -documentation -pgport $PGPORT
}
function set_compiler {
echo ------------------------------------
echo ------------------------------------
echo "Compiling with G++-$1"
echo ------------------------------------
if [ -n "$1" ]; then
export CC="/usr/bin/gcc-$1"
export CXX="/usr/bin/g++-$1"
fi
}
function build_doc {
pushd build > /dev/null || exit 1
#rm -rf doc/* ; rm -rf locale/*/*/*.mo
# Clean only generated files while preserving custom content
find doc -type f \( -name "*.html" -o -name "*.pdf" \) -delete
make doc
#example on how to only build spanish html
#make html-es
# developers documentation
#rm -rf doxygen/*
make doxy
popd > /dev/null || exit 1
}
function check {
pushd build > /dev/null || exit 1
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
# Run with error handling and report generation
cppcheck --project=compile_commands.json \
--enable=all \
--suppress=missingIncludeSystem \
--error-exitcode=1 \
--output-file=cppcheck-report.txt 2>&1 || {
echo "Static analysis failed. See build/cppcheck-report.txt for details"
return 1
}
popd > /dev/null || exit 1
}
function tidy_with_clang {
local base_branch=${1:-"upstream/develop"}
.github/scripts/tidy-vs-commit.sh "$base_branch" || {
echo "clang-tidy checks failed"
return 1
}
}
function build {
pushd build > /dev/null || exit 1
set_cmake
#make -j 16 VERBOSE=1
make -j 16
#make
sudo make install
popd > /dev/null || exit 1
}
function test_compile {
set_compiler "${GCC}"
build
echo --------------------------------------------
echo Execute documentation queries
echo --------------------------------------------
for d in ${QUERIES_DIRS}
do
# generate the documentation queries
#tools/testers/doc_queries_generator.pl -alg "docqueries/${d}" -documentation -pgport "${PGPORT}"
# Show warnings
#tools/testers/doc_queries_generator.pl -alg "docqueries/${d}" -level WARNING -pgport "${PGPORT}"
# Compare differences on results
tools/testers/doc_queries_generator.pl -alg "docqueries/${d}" -pgport "${PGPORT}"
done
echo --------------------------------------------
echo Execute tap_directories
echo --------------------------------------------
for d in ${TAP_DIRS}
do
time bash taptest.sh "${d}" "-p ${PGPORT}"
done
tap_test
tools/testers/doc_queries_generator.pl -pgport $PGPORT
build_doc
tap_test
action_tests
}
test_compile