Browse Source

Merge branch 'PHP-8.3'

* PHP-8.3:
  Fix travis_wait
pull/12324/merge
Ilija Tovilo 2 years ago
parent
commit
e3de478f66
No known key found for this signature in database GPG Key ID: A4F5D403F118200A
  1. 2
      .travis.yml
  2. 2
      travis/test.sh

2
.travis.yml

@ -83,7 +83,7 @@ before_script:
# Run PHPs run-tests.php
script:
- travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M
- ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
after_success:

2
travis/test.sh

@ -7,7 +7,7 @@ if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi
export SKIP_SLOW_TESTS=1
export SKIP_IO_CAPTURE_TESTS=1
./sapi/cli/php run-tests.php -P \
-g "FAIL,BORK,LEAK" --offline --show-diff --show-slow 1000 \
-g "FAIL,SKIP,BORK,LEAK" --offline --show-diff --show-slow 1000 \
--no-progress \
--set-timeout 120 -j$JOBS \
-d extension=`pwd`/modules/zend_test.so \

Loading…
Cancel
Save