Skip to content

Commit

Permalink
Run tests with php+default serializers on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jun 23, 2018
1 parent 75d5c28 commit 665925c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ script:
- phpize
- ./configure --enable-apcu-debug
- make
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -p `phpenv which php` --show-diff --set-timeout 120
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -d apc.serializer=php -p `phpenv which php` --show-diff --set-timeout 120
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -d apc.serializer=default -p `phpenv which php` --show-diff --set-timeout 120
- phpize --clean
- phpize
- ./configure --enable-apcu-debug --disable-apcu-rwlocks
- make
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -p `phpenv which php` --show-diff --set-timeout 120
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -d apc.serializer=php -p `phpenv which php` --show-diff --set-timeout 120
- REPORT_EXIT_STATUS=1 php -n run-tests.php -n -d extension_dir=./modules/ -d extension=apcu.so -d apc.enable=1 -d apc.enable_cli=1 -d apc.serializer=default -p `phpenv which php` --show-diff --set-timeout 120

0 comments on commit 665925c

Please sign in to comment.