File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676 - ' 8.3'
7777 - ' 8.4'
7878 - ' 8.5'
79+ ts :
80+ - nts
81+ - ts
7982 runs-on : windows-2022
80- name : " Windows — PHP ${{ matrix.php-version }}"
83+ name : " Windows — PHP ${{ matrix.php-version }} — ${{ matrix.ts == 'ts' && 'TS' || 'NTS' }} "
8184 steps :
8285 - uses : actions/checkout@v6
8386
8689 with :
8790 php-version : ${{ matrix.php-version }}
8891 arch : x64
89- ts : nts
92+ ts : ${{ matrix.ts }}
9093 args : --enable-debugger
9194 run-tests : false
9295
9598 shell : pwsh
9699 run : |
97100 $phpVer = "${{ matrix.php-version }}"
98- $assetName = "php-debugger-php${phpVer}-windows-x64.dll"
101+ $tsTag = "${{ matrix.ts }}"
102+ $assetName = "php-debugger-php${phpVer}-${tsTag}-windows-x64.dll"
99103 $dll = Get-ChildItem -Path $env:RUNNER_TEMP -Recurse -Filter 'php_debugger.dll' -ErrorAction SilentlyContinue | Select-Object -First 1
100104 if (-not $dll) {
101105 $dll = Get-ChildItem -Recurse -Filter 'php_debugger.dll' -ErrorAction SilentlyContinue | Select-Object -First 1
You can’t perform that action at this time.
0 commit comments