Skip to content

Commit

Permalink
Have berrie bots prepend PG path to PATH
Browse files Browse the repository at this point in the history
Should fix mixing different versions between build and test
  • Loading branch information
strk committed Nov 2, 2020
1 parent a7ff53f commit 6b5aaea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/berrie/postgis_regress.sh
Expand Up @@ -12,7 +12,7 @@ export OS_BUILD=32
export PG_VER=12
export PGPATH=${WORKSPACE}/pg/label/${label}/rel/pg${PG_VER}w${OS_BUILD}

export PATH=${PATH}:${PGPATH}/bin:${PGPATH}/lib
export PATH=${PGPATH}/bin:${PGPATH}/lib:${PATH}
export PGPORT=55432
export PGDATA=$PGPATH/data_${PGPORT}
export PGHOST=localhost
Expand Down
2 changes: 1 addition & 1 deletion ci/berrie64/postgis_regress.sh
Expand Up @@ -12,7 +12,7 @@ export OS_BUILD=64
export PG_VER=13
export PGPATH=${WORKSPACE}/pg/label/${label}/rel/pg${PG_VER}w${OS_BUILD}

export PATH=${PATH}:${PGPATH}/bin:${PGPATH}/lib
export PATH=${PGPATH}/bin:${PGPATH}/lib:${PATH}
export PGPORT=55432
export PGDATA=$PGPATH/data_${PGPORT}
export PGHOST=localhost
Expand Down

0 comments on commit 6b5aaea

Please sign in to comment.