-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (30 loc) · 1.02 KB
/
.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
# .travis.yml
language: node_js
dist: trusty
sudo: required
# - '8' doesn't work because some strange babel error that I was not able to reproduce in trusty virtualbox,
# maybe updating to some newer distro helps...
node_js:
- '7'
- '6'
- '5'
- '4'
before_install:
- wget https://raw.githubusercontent.com/Vincit/travis-oracledb-xe/master/accept_the_license_agreement_for_oracledb_xe_11g_and_install.sh
- bash ./accept_the_license_agreement_for_oracledb_xe_11g_and_install.sh
- npm install oracledb
before_script:
- psql -c 'create database knex_test;' -U postgres
- mysql -e 'create database knex_test;'
after_script:
- npm run-script coveralls
notifications:
email: false
env:
- CXX=g++-4.8 DB="maria mysql mysql2 postgres sqlite3 oracledb" KNEX_TEST_TIMEOUT=60000 ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe ORACLE_SID=XE OCI_LIB_DIR=/u01/app/oracle/product/11.2.0/xe/lib LD_LIBRARY_PATH=/u01/app/oracle/product/11.2.0/xe/lib
addons:
postgresql: '9.6'
apt:
packages:
- g++-4.8
- gcc-4.8