Skip to content

chore: Bump magik grammar (#749) #1761

chore: Bump magik grammar (#749)

chore: Bump magik grammar (#749) #1761

Workflow file for this run

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
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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@v4
- run: .github/script/setup
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- 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 }}
continue-on-error: ${{ runner.os == 'Windows' }}