Skip to content

Commit e5c7145

Browse files
committed
Attempt to fix OSX testing
1 parent 8c03a50 commit e5c7145

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest, macos-latest]
26-
emacs-version: [26.3, 27.2, 28.2, snapshot]
26+
emacs-version: [26.3, 27.2, 28.2, 29.2, snapshot]
27+
exclude:
28+
- os: macos-latest
29+
emacs-version: 26.3
30+
- os: macos-latest
31+
emacs-version: 27.2
2732
runs-on: ${{ matrix.os }}
2833
continue-on-error: true
2934
env:

src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ AC_INIT([emacs-zmq], [1.0.0], [[email protected]])
33

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

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

0 commit comments

Comments
 (0)