basic support for builtins
[m6w6/ext-psi] / scripts / gen_travis_yml.php
index 43a30c948aede53c7583dc792c11df5a530da467..8b4185bc197b263d16e3d1e3af124d8d05563b00 100755 (executable)
@@ -9,6 +9,9 @@ addons:
   packages:
    - php5-cli
    - php-pear
+   - valgrind
+   - gdb
+   - apport
    - re2c
    - libidn11-dev
    - libsqlite3-dev
@@ -24,7 +27,6 @@ $env = $gen([
        #"enable_maintainer_zts",
        "enable_psi" => ["yes"],
        "enable_psi_posix" => ["all"],
-       "LEMON" => ["'\\\$(PHP_PSI_BUILDDIR)/lemon'"]
 ]);
 foreach ($env as $e) {
        printf("  - %s\n", $e);
@@ -32,13 +34,35 @@ foreach ($env as $e) {
 
 ?>
 
-before_script:
+before_install:
+ # make sure we do not try to regenerate files with broken bison or old re2c
+ - touch src/parser_proc_grammar.y
+ - touch src/parser_proc.c
+ - touch src/parser_proc.h
+ - touch src/parser_scan.re
+ - touch src/parser_scan.c
+ - touch src/parser.h
+
+install:
  - make -f travis/pecl/Makefile php
- - make -f travis/pecl/Makefile ext PECL=psi
+
+before_script:
+ - ulimit -c unlimited -S
+ - export TEST_PHP_ARGS="--no-clean"
 
 script:
+ - make -f travis/pecl/Makefile ext PECL=psi
  - make -f travis/pecl/Makefile test
 
 after_failure:
  - cat config.log | curl -F 'sprunge=<-' http://sprunge.us
- - ldd .libs/psi.so
+ - cat tests/parser/dump001.psi | curl -F 'sprunge=<-' http://sprunge.us
+ - test -f core* && gdb -q -ex bt --batch $HOME/job-$TRAVIS_JOB_NUMBER/bin/php core*
+
+notifications:
+  webhooks:
+    urls:
+      - https://webhooks.gitter.im/e/30aebb6c0b03f1117817
+    on_success: change
+    on_failure: always
+    on_start: never