diff options
| author | 2024-07-25 10:42:38 +0200 | |
|---|---|---|
| committer | 2024-07-25 10:42:38 +0200 | |
| commit | aee31bf6afa21edba8e71b6c7bae0372dc63fa5c (patch) | |
| tree | 0f98ec7a28b2a07e367aeb79b94d8fbaa96a2111 /.github | |
| parent | Revert part of #2661 to fix the mainwindow icon (#2665) (diff) | |
| download | KVIrc-aee31bf6afa21edba8e71b6c7bae0372dc63fa5c.tar.gz KVIrc-aee31bf6afa21edba8e71b6c7bae0372dc63fa5c.tar.bz2 KVIrc-aee31bf6afa21edba8e71b6c7bae0372dc63fa5c.zip | |
Work around macOS build failures in CI (#2671)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build_macos.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 41785af0b..e4954ffd6 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -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: | |
