Skip to content

Commit 6ae0ef6

Browse files
committed
[skip ci] Adding fail-fast: false
1 parent b646b38 commit 6ae0ef6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/windows-installer.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
runs-on: windows-2025
1818
name: Windows installer - ${{ matrix.arch }}
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
arch: [x64, x86]
2223
steps:
@@ -62,8 +63,16 @@ jobs:
6263
working-directory: ${{ steps.extract.outputs.build_dir }}
6364
run: |
6465
$file = Get-Item .\win\Output\*.exe
65-
Start-Process -FilePath ".\win\Output\$($file.Name)" -ArgumentList '/VERYSILENT', '/SUPPRESSMSGBOXES', '/ALLUSERS', '/LOG="\tmp\setup.log"' -Wait
66-
66+
Start-Process -FilePath ".\win\Output\$($file.Name)" -ArgumentList '/VERYSILENT', '/SUPPRESSMSGBOXES', '/ALLUSERS', '/LOG="setup.log"' -Wait
67+
- name: Debug
68+
working-directory: ${{ steps.extract.outputs.build_dir }}
69+
shell: cmd
70+
run: |
71+
type setup.log
72+
dir
73+
- name: Exec Sagittarius
74+
shell: pwsh
75+
run: |
6776
if ("${{ matrix.arch }}" -eq "x86") {
6877
$sash = "$(${Env:ProgramFiles(x86)})\Sagittarius\sash.exe"
6978
} else {

0 commit comments

Comments
 (0)