Skip to content

Commit

Permalink
ci: Modify macOS workflow to run and kill aardvark app with timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
silviot committed Dec 9, 2024
1 parent 4b90a47 commit b6a0498
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,5 +222,9 @@ jobs:
RUST_BACKTRACE: "full"
RUST_LOG: "debug"
G_MESSAGES_DEBUG: "all"
run: ./Aardvark.app/Contents/MacOS/aardvark
continue-on-error: true # Not currently working because of gresources
run: |
./Aardvark.app/Contents/MacOS/aardvark &
PID=$!
sleep 5
echo Killing aardvark
kill $PID || true

0 comments on commit b6a0498

Please sign in to comment.