• R/O
  • HTTP
  • SSH
  • HTTPS

pg_bigm: Commit

This is the main pg_bigm git repository.


Commit MetaInfo

Revisionb42c495fb7c33498c2f7b6436e7f9dfa6a7e1285 (tree)
Zeit2020-10-15 09:19:33
AutorMasaoFujii <masao.fujii@gmai...>
CommiterMasaoFujii

Log Message

Make Travis CI run installcheck-trgm regression test.

Back-patch to v1.1 where installcheck-trgm test was added.

Ändern Zusammenfassung

Diff

--- a/.travis.yml
+++ b/.travis.yml
@@ -21,12 +21,16 @@ before_install:
2121 - CURDIR=$(pwd)
2222 - PGHOME=${CURDIR}/${PGBRANCH}
2323 - PGDATA=${PGHOME}/data
24+ - PGSRC=${CURDIR}/postgres
25+ - TRGMSRC=${PGSRC}/contrib/pg_trgm
2426 - git clone https://github.com/postgres/postgres.git
25- - cd postgres
27+ - cd ${PGSRC}
2628 - git checkout ${PGBRANCH}
2729 - ./configure --prefix=${PGHOME} --enable-debug --enable-cassert
2830 - make -j 2
2931 - make install
32+ - cd ${TRGMSRC}
33+ - make install
3034 - export PATH=${PATH}:${PGHOME}/bin
3135 - initdb -D ${PGDATA} --locale=C --encoding=UTF8
3236 - pg_ctl -D ${PGDATA} -w start
@@ -38,6 +42,7 @@ before_script:
3842
3943 script:
4044 - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config installcheck
45+ - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config installcheck-trgm
4146
4247 after_script:
4348 - if [ -f regression.diffs ]; then cat regression.diffs; fi
Show on old repository browser