Skip to content

Commit

Permalink
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 5265d88
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
env:
CC: ${{ matrix.os == 'macos-latest' && 'clang' || 'gcc' }}
steps:
- uses: actions/checkout@v3
- run: brew install automake
- uses: actions/checkout@v4
- run: brew install automake libtool
if: matrix.os == 'macos-latest'
- name: Install Emacs
uses: purcell/setup-emacs@master
with:
version: 28.2
version: 29.2
- name: Compile
run: |
make
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,19 @@ 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:
CC: ${{ matrix.os == 'macos-latest' && 'clang' || 'gcc' }}
steps:
- uses: actions/checkout@v3
- run: brew install automake
- uses: actions/checkout@v4
- run: brew install automake libtool
if: matrix.os == 'macos-latest'
- name: Install Emacs
uses: purcell/setup-emacs@master
Expand Down

0 comments on commit 5265d88

Please sign in to comment.