Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ jobs:
cmake -DPOSTGRESQL_VERSION=${PGVER} -DCMAKE_BUILD_TYPE=Release -DWITH_DOC=OFF ..
make -j 4
sudo make install
sudo service postgresql start
createdb -p "${PGPORT}" ___pgr___test___
psql -p "${PGPORT}" -d ___pgr___test___ -c "CREATE EXTENSION pgrouting CASCADE;"

- name: Test old version before update with current tests
run: |
sudo service postgresql start
createdb -p "${PGPORT}" ___pgr___test___
psql -p "${PGPORT}" -d ___pgr___test___ -c "CREATE EXTENSION pgrouting CASCADE;"
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
DIR=$(git rev-parse --show-toplevel)
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "${{ matrix.old_pgr }}"
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

- name: Build current version
Expand All @@ -118,8 +118,11 @@ jobs:
- name: Test old version with currrent tests after installing current
run: |
sudo service postgresql start
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
dropdb -p "${PGPORT}" ___pgr___test___
createdb -p "${PGPORT}" ___pgr___test___
DIR=$(git rev-parse --show-toplevel)
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "${{ matrix.old_pgr }}"
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

- name: Test old version with current tests after update
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

* ``pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)``
* ``pgr_trspviavertices(text,anyarray,boolean,boolean,text)``
* ``pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)``
* ``pgr_trsp(text,integer,integer,boolean,boolean,text)``



Expand All @@ -34,6 +36,10 @@ milestone for 3.7.1
* [#2689](https://github.com/pgRouting/pgrouting/pull/2689) When point is a
vertex, the withPoints family do not return results.

**C/C++ code enhancemet**

* TRSP family

### pgRouting 3.7.0 Release Notes

To see all issues & pull requests closed by this release see the [Git closed
Expand Down
1 change: 1 addition & 0 deletions configuration.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ common | Y | Y | N
# Has the command needed to link with prostgresl
#----------------------
dijkstra | Y | Y | Y
legacy | Y | N | N
allpairs | Y | Y | Y
astar | Y | Y | Y
driving_distance | Y | Y | Y
Expand Down
Loading
Loading