Skip to content

Commit bc4e293

Browse files
committed
DEBUG Revert "Add Windows build to nightly"
1 parent 719f8ab commit bc4e293

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.github/workflows/push.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,29 @@ jobs:
162162
- name: Verify generated files are up to date
163163
uses: ./.github/actions/verify-generated-files
164164
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' }}"
166176
runs-on: windows-2019
167177
env:
168178
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
169179
PHP_BUILD_OBJ_DIR: C:\obj
170180
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
171181
PHP_BUILD_SDK_BRANCH: php_downloads_server_migration_v1
172182
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' || '' }}"
176186
PARALLEL: -j2
177-
OPCACHE: "1"
187+
OPCACHE: "${{ matrix.opcache && '1' || '0' }}"
178188
steps:
179189
- name: git config
180190
run: git config --global core.autocrlf false && git config --global core.eol lf

0 commit comments

Comments
 (0)