We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1916327 commit bf94deaCopy full SHA for bf94dea
.github/actions/freebsd/action.yml
@@ -3,6 +3,9 @@ inputs:
3
configurationParameters:
4
default: ''
5
required: false
6
+ runExtraTests:
7
+ default: ''
8
+ required: false
9
runs:
10
using: composite
11
steps:
@@ -112,3 +115,7 @@ runs:
112
115
--show-slow 1000 \
113
116
--set-timeout 120 \
114
117
-d zend_extension=opcache.so
118
+
119
+ if test "${{ input.runExtraTests }}" = "yes"; then
120
+ sapi/cli/php run-extra-tests.php
121
+ fi
.github/workflows/nightly.yml
@@ -1086,3 +1086,4 @@ jobs:
1086
with:
1087
configurationParameters: >-
1088
--${{ matrix.zts && 'enable' || 'disable' }}-zts
1089
+ runExtraTests: yes
0 commit comments