File tree 1 file changed +15
-5
lines changed 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -162,19 +162,29 @@ jobs:
162
162
- name : Verify generated files are up to date
163
163
uses : ./.github/actions/verify-generated-files
164
164
WINDOWS :
165
- name : WINDOWS_X64_ZTS
165
+ strategy :
166
+ fail-fast : false
167
+ matrix :
168
+ include :
169
+ - x64 : true
170
+ zts : false
171
+ opcache : true
172
+ - x64 : false
173
+ zts : true
174
+ opcache : false
175
+ name : " WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
166
176
runs-on : windows-2019
167
177
env :
168
178
PHP_BUILD_CACHE_BASE_DIR : C:\build-cache
169
179
PHP_BUILD_OBJ_DIR : C:\obj
170
180
PHP_BUILD_CACHE_SDK_DIR : C:\build-cache\sdk
171
181
PHP_BUILD_SDK_BRANCH : php_downloads_server_migration_v1
172
182
PHP_BUILD_CRT : vs16
173
- PLATFORM : x64
174
- THREAD_SAFE : " 1 "
175
- INTRINSICS : AVX2
183
+ PLATFORM : ${{ matrix. x64 && 'x64' || 'x86' }}
184
+ THREAD_SAFE : " ${{ matrix.zts && '1' || '0' }} "
185
+ INTRINSICS : " ${{ matrix.zts && ' AVX2' || '' }} "
176
186
PARALLEL : -j2
177
- OPCACHE : " 1 "
187
+ OPCACHE : " ${{ matrix.opcache && '1' || '0' }} "
178
188
steps :
179
189
- name : git config
180
190
run : git config --global core.autocrlf false && git config --global core.eol lf
You can’t perform that action at this time.
0 commit comments