Skip to content

Commit

Permalink
Work around macOS build failures in CI (#2671)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltca authored Jul 25, 2024
1 parent d169ba8 commit aee31bf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ jobs:
git_desc=$(git describe --always)
echo "dmg_name=KVIrc-$kvi_version-dev-$(date +%F)-git-$git_desc" >> "$GITHUB_ENV"
- name: Work around macOS being awful
shell: bash
run: |
# BUG: https://github.com/actions/runner-images/issues/7522
echo Killing XProtect...; sudo pkill -9 XProtect >/dev/null || true;
echo Waiting for XProtect process...; while pgrep XProtect; do sleep 3; done;
- name: Create DMG
shell: bash
run: |
Expand Down

0 comments on commit aee31bf

Please sign in to comment.