feat: Add Elisp support #432
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- github-actions # To test changes related to GitHub Actions. | |
- ci # To test all CI changes. | |
paths-ignore: | |
- README.org | |
- CHANGELOG.md | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- README.org | |
- CHANGELOG.md | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-12 | |
- ubuntu-20.04 | |
emacs-version: | |
- '27.2' | |
- '28.2' | |
target: | |
- "" | |
include: | |
- os: windows-2019 | |
emacs-version: '27.2' | |
target: "" | |
- os: macos-12 | |
emacs-version: '27.2' | |
# Cross build | |
target: aarch64-apple-darwin | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: .github/script/setup | |
- name: Install tree-sitter CLI | |
run: npm install -g [email protected] | |
- uses: jcs090218/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs-version }} | |
- uses: emacs-eask/setup-eask@master | |
with: | |
version: 'snapshot' | |
- run: eask install-deps | |
- run: script/compile changed ${{ github.event.pull_request.base.sha }} -target "${{ matrix.target }}" | |
if: github.event_name == 'pull_request' | |
continue-on-error: ${{ !matrix.target }} | |
- run: script/compile all -target "${{ matrix.target }}" | |
if: github.event_name != 'pull_request' | |
continue-on-error: ${{ !matrix.target }} | |
- run: script/inspect-binaries | |
continue-on-error: true | |
- run: script/test | |
if: ${{ !matrix.target }} |