ERT-straight #663
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: ERT-straight | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
schedule: | |
- cron: '0 0 * * *' # daily | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: | |
- 29.1 | |
- 29.2 | |
- 29.3 | |
- release-snapshot | |
# INFO: At some point, in Emacs 30 the 'pp' function, which all | |
# tests rely on to generate the ref file, changed how objects are | |
# displayed, making many tests fail. | |
# Therefore, moved the snapshot to its own workflow out of regular CI | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
# Checks-out repository under $GITHUB_WORKSPACE | |
- name: Clone vhdl-ext | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install binaries | |
run: | | |
test-hdl/vhdl/scripts/setup-env.sh | |
test-hdl/vhdl/scripts/install-ts-grammar.sh | |
- name: Run ERT tests | |
run: | | |
make |