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 11name : FreeBSD
2+ inputs :
3+ configurationParameters :
4+ default : ' '
5+ required : false
26runs :
37 using : composite
48 steps :
7983 --with-mhash \
8084 --with-sodium \
8185 --with-config-file-path=/etc \
82- --with-config-file-scan-dir=/etc/php.d
86+ --with-config-file-scan-dir=/etc/php.d \
87+ ${{ inputs.configurationParameters }}
88+
8389 gmake -j2
8490 mkdir /etc/php.d
8591 gmake install > /dev/null
Original file line number Diff line number Diff line change @@ -1052,7 +1052,13 @@ jobs:
10521052 - name : Test
10531053 run : .github/scripts/windows/test.bat
10541054 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' }}"
10561062 runs-on : ubuntu-latest
10571063 steps :
10581064 - name : git checkout
@@ -1061,3 +1067,6 @@ jobs:
10611067 ref : ${{ inputs.branch }}
10621068 - name : FreeBSD
10631069 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