Skip to content

Commit bdae875

Browse files
committed
add windows tests and build
1 parent e7e1b36 commit bdae875

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ jobs:
118118
if (Test-Path "lib\csv_parser.c") { echo "csv_parser.c exists" } else { echo "csv_parser.c missing" }
119119
if (Test-Path "lib\csv_utils.c") { echo "csv_utils.c exists" } else { echo "csv_utils.c missing" }
120120
121-
- name: Build and test extension (PHP 8.4 NTS x86_64)
121+
- name: Build and test extension (PHP 8.4 NTS x64)
122122
uses: php/php-windows-builder/extension@v1
123123
with:
124124
php-version: '8.4'
125-
arch: 'x86_64'
125+
arch: 'x64'
126126
ts: 'nts'
127127
run-tests: true
128128

@@ -185,7 +185,7 @@ jobs:
185185
uses: php/php-windows-builder/extension@v1
186186
with:
187187
php-version: ${{ matrix.php-version }}
188-
arch: ${{ matrix.arch }}
188+
arch: ${{ matrix.arch == 'x86_64' && 'x64' || matrix.arch }}
189189
ts: ${{ matrix.ts }}
190190
run-tests: true
191191

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
uses: php/php-windows-builder/extension@v1
227227
with:
228228
php-version: ${{ matrix.php-version }}
229-
arch: ${{ matrix.arch }}
229+
arch: ${{ matrix.arch == 'x86_64' && 'x64' || matrix.arch }}
230230
ts: ${{ matrix.ts }}
231231

232232
- name: Debug - Check build output

0 commit comments

Comments
 (0)