feat: 2.0.9 Rough support for more kernels #195
Workflow file for this run
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: Test macro with ./amboso -tVV | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: make | |
- name: Run check | |
run: make check | |
- name: Run distcheck | |
run: make distcheck | |
- name: (anviltest) use -t test macro flag, +verbose (-tVV) | |
run: | | |
./amboso -t -V 5 || echo -e "\033[1;31mFailed.\e[0m\n" |