Skip to content

Commit

Permalink
Add workflow for Ibex CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilbouvier committed Mar 15, 2024
1 parent 7bb4d92 commit cc89ebe
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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]

0 comments on commit cc89ebe

Please sign in to comment.