Skip to content

Commit

Permalink
Update emacs-apple.yml
Browse files Browse the repository at this point in the history
ok, looks like apple_check actually works now...
  • Loading branch information
cooljeanius committed Oct 26, 2023
1 parent 401c232 commit 1c3e8ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/emacs-apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
HOMEBREW_VERBOSE: 1
HOMEBREW_VERBOSE_USING_DOTS: 1
run: |
if test -d doc && test -w doc && test -x "$(which makeinfo)" && test -x "$(which brew)" && test -x "$(which nproc)" && test -n "$(nproc)" && test "$(nproc)" -ge 2 && test -x "$(which make)" && test -r doc/Makefile && test -x "$(which texi2dvi)" && test -x "$(which texi2pdf)"; then \
if test -d doc && test -w doc && test -x "$(which makeinfo)" && test -x "$(which brew)" && test -x "$(which nproc)" && test -n "$(nproc)" && test "$(nproc)" -ge 2 && test -x "$(which make)" && test -r doc/Makefile && test -x "$(which texi2dvi)" && test -x "$(which texi2pdf)" && test -x "$(which dvips)"; then \
echo "using $(which makeinfo) for makeinfo with the following version info: $(makeinfo --version)"; \
brew install texlive; \
echo "nproc says we can use $(nproc) build jobs."; \
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
make dumpemacs
make emacswrapper
if test "${{ matrix.compiler }}" = "clang" || test -n "$(gcc --version | grep clang)"; then \
make -ki apple_check MAC_VERS_CFLAGS="-mmacosx-version-min=10.7 -stdlib=libc++"; \
make apple_check MAC_VERS_CFLAGS="-mmacosx-version-min=10.7 -stdlib=libc++"; \
else \
make -ki apple_check; \
fi
Expand Down

0 comments on commit 1c3e8ac

Please sign in to comment.