Merge pull request #3 from uos/develop #28
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: core-ubu20 | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
branches: | |
- '*' | |
jobs: | |
rmagine-core-ubuntu20: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Deps (core) | |
run: sudo apt install -y libboost-dev libeigen3-dev libassimp-dev cmake | |
- name: Clone | |
uses: actions/checkout@v4 | |
with: | |
path: rmagine | |
- name: Compile | |
run: | | |
cd rmagine | |
mkdir build | |
cd build | |
cmake .. | |
make | |
- name: Test | |
run: | | |
cd rmagine | |
cd build | |
./bin/rmagine_version | |
make test |