From e5c7145ae5353bf98e2c78168e195ad119fd10b1 Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Sat, 29 Jun 2024 02:27:43 -0500 Subject: [PATCH] Attempt to fix OSX testing --- .github/workflows/test.yml | 7 ++++++- src/configure.ac | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0844d27..ed04872 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/src/configure.ac b/src/configure.ac index 29ea148..41242ce 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -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 @@ -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