Skip to content

Commit 8c20ad1

Browse files
committedSep 25, 2022
Add travis_wait to travis for test.sh
We no longer print skipped tests which can make travis fail due to no output for longer than 20 minutes.
1 parent 50fc997 commit 8c20ad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ before_script:
8787

8888
# Run PHPs run-tests.php
8989
script:
90-
- ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing
91-
- if [[ "$ARM64" == 1 ]]; then ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=function; fi
92-
- if [[ "$ARM64" == 1 ]]; then ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing --repeat 2; fi
90+
- travis_wait ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing
91+
- if [[ "$ARM64" == 1 ]]; then travis_wait ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=function; fi
92+
- if [[ "$ARM64" == 1 ]]; then travis_wait ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing --repeat 2; fi
9393
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
9494

9595
after_success:

0 commit comments

Comments
 (0)
Please sign in to comment.