Skip to content

Commit 2d39ea4

Browse files
committed
Test online tests in CI
1 parent 2f0918c commit 2d39ea4

File tree

6 files changed

+2
-49
lines changed

6 files changed

+2
-49
lines changed

.github/actions/test-linux/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ runs:
2121
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
2222
-j$(/usr/bin/nproc) \
2323
-g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP \
24-
--offline \
2524
--show-diff \
2625
--show-slow 1000 \
2726
--set-timeout 120

.github/actions/test-macos/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ runs:
1414
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
1515
-j$(sysctl -n hw.ncpu) \
1616
-g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP \
17-
--offline \
1817
--show-diff \
1918
--show-slow 1000 \
2019
--set-timeout 120

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ before_script:
9191
script:
9292
# ARM64 CI reports nproc=32, which is excessive.
9393
- if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi
94-
- ./sapi/cli/php run-tests.php -P -d extension=`pwd`/modules/zend_test.so $(if [ $ENABLE_DEBUG == 0 ]; then echo "-d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=16M -d zend_extension=`pwd`/modules/opcache.so"; fi) -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --offline --show-diff --show-slow 1000 --set-timeout 120 -j$JOBS
94+
- ./sapi/cli/php run-tests.php -P -d extension=`pwd`/modules/zend_test.so $(if [ $ENABLE_DEBUG == 0 ]; then echo "-d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=16M -d zend_extension=`pwd`/modules/opcache.so"; fi) -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --show-diff --show-slow 1000 --set-timeout 120 -j$JOBS
9595
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
9696

9797
after_success:

appveyor/test_task.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ mkdir c:\tests_tmp
9898
set TEST_PHP_JUNIT=c:\junit.out.xml
9999

100100
cd "%APPVEYOR_BUILD_FOLDER%"
101-
nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARALLEL%"
101+
nmake test TESTS="%OPCACHE_OPTS% -q --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARALLEL%"
102102

103103
set EXIT_CODE=%errorlevel%
104104

azure/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ steps:
1616
php run-tests.php -P -q \
1717
-j$(/usr/bin/nproc) \
1818
-g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP \
19-
--offline \
2019
--show-diff \
2120
--show-slow 1000 \
2221
--set-timeout 120 \

ext/xmlreader/tests/bug70309.phpt

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)