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 29d8a4c commit e9ba138
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
Expand All @@ -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
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
Expand All @@ -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 e9ba138

Please sign in to comment.