Navigation Menu

Skip to content

Commit

Permalink
ci: use the latest PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 9, 2017
1 parent 7ee23fd commit 5324748
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
22 changes: 16 additions & 6 deletions .travis.yml
Expand Up @@ -6,18 +6,28 @@ dist: trusty
language: c
matrix:
include:
- env: PG_VERSION=9.3
- env:
PG_VERSION: 9.3
addons:
postgresql: "9.3"
- env: PG_VERSION=9.4
- env:
PG_VERSION: 9.4
addons:
postgresql: "9.4"
- env: PG_VERSION=9.5
- env:
PG_VERSION: 9.5
addons:
postgresql: "9.5"
- env: PG_VERSION=9.6
- env:
PG_VERSION: 9.6
WAL_SUPPORTED: "yes"
addons:
postgresql: "9.6"
- env:
PG_VERSION: 10.0
WAL_SUPPORTED: "yes"
addons:
postgresql: "10.0"
sudo: required
# env:
# - GROONGA_MASTER=yes
Expand All @@ -26,7 +36,7 @@ install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y postgresql-server-dev-${PG_VERSION} libmsgpack-dev groonga-token-filter-stem
- |
if [ ${PG_VERSION} = "9.6" ]; then
if [ "${WAL_SUPPORTED}" = "yes" ]; then
rvm use 2.3.3 --install --binary --fuzzy
gem install test-unit
fi
Expand Down Expand Up @@ -69,7 +79,7 @@ script:
SETUP_TMP_DIR=no \
EXTRA_REGRESS_OPTS="--launcher=$(pwd)/test/short-pgappname"
- |
if [ ${PG_VERSION} = "9.6" ]; then
if [ "${WAL_SUPPORTED}" = "yes" ]; then
test/run-test.rb
fi
after_failure:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
@@ -1,8 +1,8 @@
version: "{build}"
clone_depth: 10
environment:
POSTGRESQL_VERSION: 9.6.2-3
GROONGA_VERSION: 6.1.1
POSTGRESQL_VERSION: 10.0-1
GROONGA_VERSION: 7.0.7
notifications:
- provider: Email
to:
Expand Down

0 comments on commit 5324748

Please sign in to comment.