Skip to content

Add workflow for Ibex CI #1

Add workflow for Ibex CI

Add workflow for Ibex CI #1

Workflow file for this run

name: Tests
on: push
jobs:
cmake-build-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: CMake
run: |
mkdir build
cd build
cmake -DINTERVAL_LIB=${{ matrix.interval_lib }} -DLP_LIB={{ matrix.lp_lib }} ..
- run: make
- run: make check
strategy:
matrix:
interval_lib: [gaol, filib]
lp_lib: [none]