forked from dimitri/pgloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (33 loc) · 1000 Bytes
/
.travis.yml
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
language: shell
os: linux
dist: xenial
env:
matrix:
- LISP=ccl PGVERSION=9.6
- LISP=ccl PGVERSION=10
- LISP=ccl PGVERSION=11
- LISP=ccl PGVERSION=12
- LISP=ccl PGVERSION=13
- LISP=sbcl PGVERSION=9.6
- LISP=sbcl PGVERSION=10
- LISP=sbcl PGVERSION=11
- LISP=sbcl PGVERSION=12
- LISP=sbcl PGVERSION=13
install:
- ./.travis.sh lisp_install
- ./.travis.sh pgdg_repositories
- ./.travis.sh postgresql_install
- sudo apt-get install -y unzip libsqlite3-dev gawk freetds-dev
before_script:
- PGUSER=postgres createuser -S -R -D -E -l pgloader
- PGUSER=postgres createdb -E UTF8 -O pgloader pgloader
- PGUSER=postgres psql -d pgloader -c "create extension ip4r;"
- PGUSER=pgloader psql -d pgloader -c "create schema expected;"
- PGUSER=pgloader psql -d pgloader -c "create schema err;"
- make --version
- make "CL=$LISP" clones save
script:
- PGUSER=pgloader make "CL=$LISP" check-saved
notifications:
email:
- dim@tapoueh.org