A few bytecode spec tweaks (relating to FPI, cuf iters)
[hiphop-php.git] / .travis.yml
blob7860707bda721c163a756b46d39ed7bd947b7ff3
1 language: cpp
3 compiler:
4   - gcc
6 before_script: 
7   - TRAVIS=1 ./configure_ubuntu_12.04.sh
8 # for some tests  
9   - sudo locale-gen de_DE && sudo locale-gen zh_CN.utf8 && sudo locale-gen fr_FR
10   - HPHP_HOME=`pwd` make -j 6
12 # Test suites take longer to run in RepoAuthoritative mode (-r) than normal so
13 # split out the -r from normal runs and further split the -r runs by suite to
14 # avoid the possibility of slower machines exceeding the 50 minute test timeout
15 env:
16   - TEST_RUN_MODE="-m jit all"
17   - TEST_RUN_MODE="-m interp all"
18   - TEST_RUN_MODE="-m jit -r quick slow"
19   - TEST_RUN_MODE="-m interp -r quick slow"
20   - TEST_RUN_MODE="-m jit -r zend"
21   - TEST_RUN_MODE="-m interp -r zend"
23 script: hphp/hhvm/hhvm hphp/test/run $TEST_RUN_MODE
25 notifications:
26   irc: "chat.freenode.net#hhvm"