Skip to content

Commit

Permalink
Attempt to fix OSX testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nnicandro committed Jun 29, 2024
1 parent 8c03a50 commit e5c7145
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
emacs-version: [26.3, 27.2, 28.2, snapshot]
emacs-version: [26.3, 27.2, 28.2, 29.2, snapshot]
exclude:
- os: macos-latest
emacs-version: 26.3
- os: macos-latest
emacs-version: 27.2
runs-on: ${{ matrix.os }}
continue-on-error: true
env:
Expand Down
2 changes: 1 addition & 1 deletion src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ AC_INIT([emacs-zmq], [1.0.0], [nathanielnicandro@gmail.com])

AC_CONFIG_SRCDIR([core.c])
AC_CONFIG_MACRO_DIRS([m4])
LT_INIT([win32-dll shared disable-static])
AM_INIT_AUTOMAKE([-Wall -Wno-override foreign])
AC_PROG_CC
AM_PROG_AR
Expand Down Expand Up @@ -80,6 +81,5 @@ AC_SUBST([MAYBE_LIBZMQ])
MODULE_EXT="`emacs -Q -batch --eval '(princ module-file-suffix)'`"
AC_SUBST([MODULE_EXT])

LT_INIT([win32-dll shared disable-static])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

0 comments on commit e5c7145

Please sign in to comment.