Skip to content

Commit 4913958

Browse files
committed
test also 32 bit Win
1 parent b431f67 commit 4913958

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/push.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,16 @@ jobs:
8989
fail-fast: false
9090
matrix:
9191
include:
92-
- zts: false
92+
- x64: false
93+
zts: false
9394
opcache: false
94-
- zts: true
95+
- x64: false
96+
zts: true
97+
opcache: true
98+
- x64: true
99+
zts: false
95100
opcache: true
96-
name: "WINDOWS_X64_${{ matrix.zts && 'ZTS' || 'NTS' }}_${{ matrix.opcache && 'wOPcache' || 'woOPcache' }}"
101+
name: "WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}_${{ matrix.opcache && 'wOPcache' || 'woOPcache' }}"
97102
runs-on: windows-2019
98103
env:
99104
APPVEYOR_BUILD_FOLDER: "${{ github.workspace }}"
@@ -103,7 +108,7 @@ jobs:
103108
PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
104109
PHP_BUILD_SDK_BRANCH: php-sdk-2.2.0
105110
PHP_BUILD_CRT: vs16
106-
PLATFORM: x64
111+
PLATFORM: ${{ matrix.x64 && 'x64' || 'x86' }}
107112
THREAD_SAFE: "${{ matrix.zts && '1' || '' }}"
108113
OPCACHE: "${{ matrix.opcache && '1' || '' }}"
109114
PARALLEL: -j2

0 commit comments

Comments
 (0)