Skip to content

Commit

Permalink
Add Github Action support for Windows and MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
brownts committed Mar 26, 2024
1 parent fe84f62 commit fe22e84
Showing 1 changed file with 31 additions and 8 deletions.
39 changes: 31 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,51 @@ jobs:
test:
strategy:
matrix:
emacs-version: ['29.1', '29.2', 'snapshot']
runs-on: ubuntu-latest
# emacs-version: ['29.1', '29.2']
emacs-version: ['29.1']
os: [windows-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
# include:
# - os: ubuntu-latest
# emacs-version: 'snapshot'
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.emacs-version == 'snapshot'}}

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Tree-Sitter Library
- name: Install Tree-Sitter Library (Linux)
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt --assume-yes install libtree-sitter-dev
- name: Install Tree-Sitter Library (Windows)
if: runner.os == 'Windows'
uses: msys2/setup-msys2@v2
with:
install: texinfo mingw-w64-x86_64-tree-sitter
# install: mingw-w64-x86_64-tree-sitter

- name: Fix makeinfo Installation (Windows)
if: runner.os == 'Windows'
shell: cmd
run: |
echo "perl ${{runner.temp}}/usr/bin/makeinfo %*" >${{runner.temp}}/usr/bin/makeinfo.bat
echo ${{runner.temp}}/usr/bin >>%GITHUB_PATH%
- name: Install Tree-Sitter Library (MacOS)
if: runner.os == 'macOS'
run: brew install tree-sitter

- name: Setup Emacs
uses: purcell/setup-emacs@master
uses: jcs090218/setup-emacs@master
with:
version: ${{matrix.emacs-version}}

- name: Setup Eldev
uses: emacs-eldev/setup-eldev@v1

- name: Test the project
run: |
sudo apt --assume-yes install texinfo
eldev -p -dtT test
run: eldev test

0 comments on commit fe22e84

Please sign in to comment.