Skip to content

Commit

Permalink
[WIP] linux_and_macos.yml: Patch ax_check_gl.m4 on deman to fix macOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Dec 23, 2024
1 parent 1b5cefb commit 2788b42
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/linux_and_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@ jobs:
portaudio \
sdl12-compat
# Find and patch ax_check_gl.m4 as needed
# https://github.com/Homebrew/homebrew-core/issues/202234
set -x -o pipefail
ax_check_gl_m4=/usr/local/Cellar/autoconf-archive/2024.10.16/share/aclocal/ax_check_gl.m4
if [[ -e "${ax_check_gl_m4}" ]] && ! grep -qF '[m4_fatal' "${ax_check_gl_m4}" ; then
wget -O- https://github.com/autoconf-archive/autoconf-archive/commit/427e226a2fe3980388abffd6de25ed6b9591cce3.patch \
| sudo patch -N "${ax_check_gl_m4}"
fi
- name: Setting dynamic environment variables
run: |-
set -x
Expand Down

0 comments on commit 2788b42

Please sign in to comment.