From e11ee58d6bae16163783098881c407eaed4761ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Tue, 29 Oct 2024 22:56:32 +0100 Subject: [PATCH] ci: Unsure the Windows built artifact is runnable --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca94580..7dee866 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,6 +117,11 @@ jobs: - name: Build the MSI installer # NOTE: This also builds the .exe internally. run: poetry run .\install\windows\build-app.bat + - name: Run the app and check that it doesn't crash. Kill it after 10 seconds. + run: | + start *\dangerzone.exe + timeout /t 10 /nobreak + taskkill /f /im dangerzone.exe macOS: name: "macOS (${{ matrix.arch }})"