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
|
#!/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="13"
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=""
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 ..
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
update-alternatives --set gcc "/usr/bin/gcc-$1"
fi
}
function build_doc {
pushd build > /dev/null || exit 1
#rm -rf doc/*
make doc
#rm -rf doxygen/*
make doxy
popd > /dev/null || exit 1
}
function test_compile {
set_compiler "${GCC}"
pushd build > /dev/null || exit 1
set_cmake
make -j 4
sudo make install
popd > /dev/null || exit 1
echo --------------------------------------------
echo Execute tap_directories
echo --------------------------------------------
for d in ${TAP_DIRS}
do
bash taptest.sh "${d}" "-p ${PGPORT}"
done
echo --------------------------------------------
echo Execute documentation queries
echo --------------------------------------------
for d in ${QUERIES_DIRS}
do
#tools/testers/doc_queries_generator.pl -alg "${d}" -documentation -pgport "${PGPORT}"
tools/testers/doc_queries_generator.pl -alg "${d}" -pgport "${PGPORT}"
done
tap_test
action_tests
}
test_compile
|