We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae0ef6 commit ad08df1Copy full SHA for ad08df1
.github/workflows/windows-installer.yml
@@ -71,6 +71,7 @@ jobs:
71
type setup.log
72
dir
73
- name: Exec Sagittarius
74
+ working-directory: ${{ steps.extract.outputs.build_dir }}
75
shell: pwsh
76
run: |
77
if ("${{ matrix.arch }}" -eq "x86") {
@@ -79,7 +80,10 @@ jobs:
79
80
$sash = "$($Env:ProgramFiles)\Sagittarius\sash.exe"
81
}
82
Write-Output $sash
- Start-Process -FilePath $sash -ArgumentList '-Einfo', ".\example\net\http-client0.scm" -Wait -NoNewWindow
83
+ $proc = Start-Process -FilePath $sash -ArgumentList '-Einfo', ".\example\net\http-client0.scm" -Wait -NoNewWindow -PassThru
84
+ if ($proc.ExitCode -ne 0) {
85
+ throw "Failed to execute sanity check(s)"
86
+ }
87
- name: Upload installer
88
id: upload-windows-installer
89
uses: actions/upload-artifact@v6
0 commit comments