File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -883,13 +883,13 @@ jobs:
883
883
matrix :
884
884
include : ${{ fromJson(needs.GENERATE_MATRIX.outputs.windows-matrix-include) }}
885
885
name : " ${{ matrix.branch.name }}_WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
886
- runs-on : windows-2019
886
+ runs-on : windows-2022
887
887
env :
888
888
PHP_BUILD_CACHE_BASE_DIR : C:\build-cache
889
889
PHP_BUILD_OBJ_DIR : C:\obj
890
890
PHP_BUILD_CACHE_SDK_DIR : C:\build-cache\sdk
891
891
PHP_BUILD_SDK_BRANCH : php-sdk-2.3.0
892
- PHP_BUILD_CRT : vs16
892
+ PHP_BUILD_CRT : vs17
893
893
PLATFORM : ${{ matrix.x64 && 'x64' || 'x86' }}
894
894
THREAD_SAFE : " ${{ matrix.zts && '1' || '0' }}"
895
895
INTRINSICS : " ${{ matrix.zts && 'AVX2' || '' }}"
Original file line number Diff line number Diff line change @@ -236,13 +236,13 @@ jobs:
236
236
WINDOWS :
237
237
if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
238
238
name : WINDOWS_X64_ZTS
239
- runs-on : windows-2019
239
+ runs-on : windows-2022
240
240
env :
241
241
PHP_BUILD_CACHE_BASE_DIR : C:\build-cache
242
242
PHP_BUILD_OBJ_DIR : C:\obj
243
243
PHP_BUILD_CACHE_SDK_DIR : C:\build-cache\sdk
244
244
PHP_BUILD_SDK_BRANCH : php-sdk-2.3.0
245
- PHP_BUILD_CRT : vs16
245
+ PHP_BUILD_CRT : vs17
246
246
PLATFORM : x64
247
247
THREAD_SAFE : " 1"
248
248
INTRINSICS : AVX2
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
GH-8841 (php-cli core dump calling a badly formed function)
3
+ --SKIPIF--
4
+ <?php
5
+ $ tracing = extension_loaded ("Zend OPcache " )
6
+ && ($ conf = opcache_get_configuration ()["directives " ])
7
+ && array_key_exists ("opcache.jit " , $ conf )
8
+ && $ conf ["opcache.jit " ] === "tracing " ;
9
+ if (PHP_OS_FAMILY === "Windows " && PHP_INT_SIZE == 8 && $ tracing ) {
10
+ $ url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979 " ;
11
+ die ("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $ url " );
12
+ }
13
+ ?>
3
14
--FILE--
4
15
<?php
5
16
register_shutdown_function (function () {
You can’t perform that action at this time.
0 commit comments