Skip to content
Snippets Groups Projects
Commit 5d21341e authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

test python 2/3 ubuntu 18/20/22

parent bdb93a92
No related branches found
No related tags found
No related merge requests found
name: Check build on linux
on: ["push", "pull_request"]
jobs:
test:
name: "Test python ${{ matrix.python }} on ${{ matrix.ubuntu }}.04"
runs-on: "ubuntu-${{ matrix.ubuntu }}.04"
strategy:
matrix:
python: [2, 3]
ubuntu: [18, 20, 22]
exclude:
- ubuntu: 22
python: 2
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- run: |
sudo apt-get update
sudo apt-get install cmake libboost-all-dev libeigen3-dev python*-numpy python*-dev
- run: cmake -DPYTHON_EXECUTABLE=$(which python${{ matrix.python }}) .
- run: make
- run: make test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment