debug: fix Windows repro workflow args
This commit is contained in:
parent
bc2cfbe065
commit
fb76b5ab4b
1 changed files with 5 additions and 2 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
|
@ -208,9 +208,12 @@ jobs:
|
||||||
- name: Run Windows standalone repro
|
- name: Run Windows standalone repro
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
run: |
|
run: |
|
||||||
$reproArgs = @("-Version", "${{ matrix.version }}", "-MarkdownLoops", "${{ matrix.markdownLoops }}")
|
$reproArgs = @{
|
||||||
|
Version = "${{ matrix.version }}"
|
||||||
|
MarkdownLoops = ${{ matrix.markdownLoops }}
|
||||||
|
}
|
||||||
if ("${{ matrix.onlyMarkdown }}" -eq "true") {
|
if ("${{ matrix.onlyMarkdown }}" -eq "true") {
|
||||||
$reproArgs += "-OnlyMarkdown"
|
$reproArgs.OnlyMarkdown = $true
|
||||||
}
|
}
|
||||||
./script/repro-windows-opentui-crash.ps1 @reproArgs
|
./script/repro-windows-opentui-crash.ps1 @reproArgs
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue