Add errorlist and sqlstate to mysqli_stmt
[hiphop-php.git] / .travis.yml
blobdf9ec0ca8da0b3ba72e74e9411e71c7cbfba9abf
1 language: cpp
3 # This doesn't work - travis defaults to plain gcc if unknown
4 # http://github.com/travis-ci/travis-ci/issues/979
5 # http://llvm.org/apt/
6 compiler:
7   - gcc
8 #  - gcc-4.8
9 #  - clang-3.4
10 #  - clang-3.5
12 services:
13   - memcached
15 # Commands before installing prerequisites
16 before_script:
17 # we can't compile with this system version
18   - time sudo apt-get remove libsqlite3-dev
19   - time TRAVIS=1 ./configure_generic.sh -DENABLE_COTIRE=ON
20 # for some tests
21   - time sudo locale-gen de_DE && sudo locale-gen zh_CN.utf8 && sudo locale-gen fr_FR
22   - time make -j 6
23   - cd hphp/test/zend/good/ext/curl/tests/responder && ../../../../../../../hhvm/hhvm -m server -p 8444 &
24 # mysql configuration for unit-tests
25   - mysql -e 'CREATE DATABASE IF NOT EXISTS hhvm;'
26   - export PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1;dbname=hhvm"
27   - export PDO_MYSQL_TEST_USER="travis"
28   - export PDO_MYSQL_TEST_PASS=""
29 # For PHP5 mysqli tests
30   - export MYSQL_TEST_USER="travis"
31   - export MYSQL_TEST_DB="hhvm"
33 # The larger test suites (slow, zend) take longer than 50 minutes to run. Since
34 # we have no way to change the timeout, we subdivide the jit/interp repo/normal
35 # matrix and then further split the large suites using an experimental cut
36 # which divides the number of tests in each sub-run roughly in two.
37 env:
38   # non-repo
39   - TEST_RUN_MODE="-m jit       quick"
40   - TEST_RUN_MODE="-m interp    quick"
41   - TEST_RUN_MODE="-m jit       slow -I '#^hphp/test/slow/[a-df-nw-x].*#'"
42   - TEST_RUN_MODE="-m jit       slow -E '#^hphp/test/slow/[a-df-nw-x].*#'"
43   - TEST_RUN_MODE="-m interp    slow -I '#^hphp/test/slow/[a-df-nw-x].*#'"
44   - TEST_RUN_MODE="-m interp    slow -E '#^hphp/test/slow/[a-df-nw-x].*#'"
45   - TEST_RUN_MODE="-m jit       zend -I '#^hphp/test/zend/good/(ext/[a-ru-zA-Z0-9]|[Z]).*#'"
46   - TEST_RUN_MODE="-m jit       zend -E '#^hphp/test/zend/good/(ext/[a-ru-zA-Z0-9]|[Z]).*#'"
47   - TEST_RUN_MODE="-m interp    zend -I '#^hphp/test/zend/good/(ext/[a-ru-zA-Z0-9]|[Z]).*#'"
48   - TEST_RUN_MODE="-m interp    zend -E '#^hphp/test/zend/good/(ext/[a-ru-zA-Z0-9]|[Z]).*#'"
50   # quick repo
51   - TEST_RUN_MODE="-m jit    -r quick"
52   - TEST_RUN_MODE="-m interp -r quick -I '#^hphp/test/quick/[a-h].*#'"
53   - TEST_RUN_MODE="-m interp -r quick -I '#^hphp/test/quick/[i-zA-Z0-9].*#'"
55   # slow repo
56   - TEST_RUN_MODE="-m jit    -r slow -I '#^hphp/test/slow/[a-b].*#'"
57   - TEST_RUN_MODE="-m jit    -r slow -I '#^hphp/test/slow/[df-h].*#'"
58   - TEST_RUN_MODE="-m jit    -r slow -I '#^hphp/test/slow/[ci-nw-x].*#'"
59   - TEST_RUN_MODE="-m jit    -r slow -I '#^hphp/test/slow/[eo-p].*#'"
60   - TEST_RUN_MODE="-m jit    -r slow -I '#^hphp/test/slow/[q-vy-zA-Z0-9].*#'"
61   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/a.*#'"
62   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/[bd].*#'"
63   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/c.*#'"
64   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/[f-nw-x].*#'"
65   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/[eo-p].*#'"
66   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/[q-s].*#'"
67   - TEST_RUN_MODE="-m interp -r slow -I '#^hphp/test/slow/[t-vy-zA-Z0-9].*#'"
69   # zend repo
70   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/[a-e].*#'"
71   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/[f-l].*#'"
72   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/[m-rt-zA-Z0-9].*#'"
73   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/s[^t].*#'"
74   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/standard/tests/a.*#'"
75   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/standard/tests/[b-f].*#'"
76   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/ext/standard/tests/[g-zA-Z0-9].*#'"  
77   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/t.*#'"
78   - TEST_RUN_MODE="-m jit    -r zend -I '#^hphp/test/zend/good/Z.*#'"
79   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/[a-i].*#'"
80   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/[j-m].*#'"
81   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/[n-rt-zA-Z0-9].*#'"
82   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/s[^t].*#'"
83   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/standard/tests/[a-f].*#'"
84   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/ext/standard/tests/[g-zA-Z0-9].*#'"
85   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/t.*#'"
86   - TEST_RUN_MODE="-m interp -r zend -I '#^hphp/test/zend/good/Z.*#'"
88 # Main test script
89 script: time PHP_CURL_HTTP_REMOTE_SERVER="http://localhost:8444" hphp/hhvm/hhvm hphp/test/run $TEST_RUN_MODE
91 # Notifications
92 # The default is to send email on all failures and changed success
93 # Adding other notifiers (like IRC) does not disable the email one
94 notifications:
95   email: false
96   irc:
97     channels:   "chat.freenode.net#hhvm-dev"
98     on_success: always
99     on_failure: always
100     use_notice: true
102 matrix:
103   fast_finish: true
104 #  include:
105 #    - compiler: clang
106 #      env: CC=clang-3.4 CXX=clang++-3.4  PACKAGE=clang-3.4
107 #    - compiler: clang
108 #      env: CC=clang-3.5 CXX=clang++-3.5  PACKAGE=clang-3.5
109 #    - compiler: gcc
110 #      env: CC=gcc-4.8   CXX=g++-4.8  PACKAGE=g++-4.8
111 # http://www.ubuntuupdates.org/package/core/trusty/main/base/gcc-4.9-base
112 #    - compiler: gcc
113 #      env: CC=gcc-4.9   CXX=g++-4.9  PACKAGE=g++-4.9
115 # everything that was pushed was already on 'master', except
116 # http://docs.travis-ci.com/user/build-configuration/#Using-regular-expressions
117 #branches:
118 #  only:
119 #    - master
120 #    - /^HHVM-.*$/