.travis.yml 352 B

123456789101112131415161718
  1. language: php
  2. sudo: required
  3. dist: trusty
  4. php:
  5. - 7.0
  6. env:
  7. - V8VER=5.2
  8. - V8VER=5.1
  9. - V8VER=5.2 VALGRIND=1
  10. before_install: make -f Makefile.travis before_install
  11. install:
  12. - if [ "$VALGRIND" = 1 ]; then sudo apt-get install -qq valgrind; export TEST_PHP_ARGS="-m"; fi
  13. - make -f Makefile.travis install
  14. script: make -f Makefile.travis test