File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : FreeBSD
2
+ inputs :
3
+ configurationParameters :
4
+ default : ' '
5
+ required : false
2
6
runs :
3
7
using : composite
4
8
steps :
80
84
--with-sodium \
81
85
--enable-werror \
82
86
--with-config-file-path=/etc \
83
- --with-config-file-scan-dir=/etc/php.d
87
+ --with-config-file-scan-dir=/etc/php.d \
88
+ ${{ inputs.configurationParameters }}
89
+
84
90
gmake -j2
85
91
mkdir /etc/php.d
86
92
gmake install > /dev/null
Original file line number Diff line number Diff line change @@ -1052,7 +1052,13 @@ jobs:
1052
1052
- name : Test
1053
1053
run : .github/scripts/windows/test.bat
1054
1054
FREEBSD :
1055
- name : FREEBSD
1055
+ strategy :
1056
+ fail-fast : false
1057
+ matrix :
1058
+ include :
1059
+ - zts : false
1060
+ - zts : true
1061
+ name : " FREEBSD_${{ matrix.zts && 'ZTS' || 'NTS' }}"
1056
1062
runs-on : ubuntu-latest
1057
1063
steps :
1058
1064
- name : git checkout
@@ -1061,3 +1067,6 @@ jobs:
1061
1067
ref : ${{ inputs.branch }}
1062
1068
- name : FreeBSD
1063
1069
uses : ./.github/actions/freebsd
1070
+ with :
1071
+ configurationParameters : >-
1072
+ --${{ matrix.zts && 'enable' || 'disable' }}-zts
You can’t perform that action at this time.
0 commit comments