summaryrefslogtreecommitdiff
path: root/.github/workflows/execute_installer.ps1
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/execute_installer.ps1')
-rw-r--r--.github/workflows/execute_installer.ps17
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/execute_installer.ps1 b/.github/workflows/execute_installer.ps1
new file mode 100644
index 0000000000..9d9f5cfbeb
--- /dev/null
+++ b/.github/workflows/execute_installer.ps1
@@ -0,0 +1,7 @@
+$ proc = Start-Process ${{ env.spack_installer }}\spack.exe "/install /quiet" -Passthru
+$handle = $proc.Handle # cache proc.Handle
+$proc.WaitForExit();
+
+if ($proc.ExitCode -ne 0) {
+ Write-Warning "$_ exited with status code $($proc.ExitCode)"
+}