Skip to content

Commit bf94dea

Browse files
committed
Run extra tests from FreeBSD action in nightly
1 parent 1916327 commit bf94dea

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/actions/freebsd/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ inputs:
33
configurationParameters:
44
default: ''
55
required: false
6+
runExtraTests:
7+
default: ''
8+
required: false
69
runs:
710
using: composite
811
steps:
@@ -112,3 +115,7 @@ runs:
112115
--show-slow 1000 \
113116
--set-timeout 120 \
114117
-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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,3 +1086,4 @@ jobs:
10861086
with:
10871087
configurationParameters: >-
10881088
--${{ matrix.zts && 'enable' || 'disable' }}-zts
1089+
runExtraTests: yes

0 commit comments

Comments
 (0)