Added sbg binary to causalization algorithm. #226
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: C/C++ CI | |
on: | |
push: | |
pull_request: | |
branches: [ modelicacc-dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps. | |
run: | | |
sudo apt-get update | |
sudo apt-get install autoconf | |
sudo apt-get install boost1.71 | |
sudo apt-get install cmake | |
sudo apt-get install doxygen | |
sudo apt-get install g++ | |
sudo apt-get install libginac-dev | |
sudo apt-get install make | |
sudo apt-get install rapidjson-dev | |
- name: Autoconf | |
working-directory: . | |
run: autoconf | |
- name: Configure | |
working-directory: . | |
run: ./configure | |
- name: SBG | |
working-directory: . | |
run: make update-sbg repo_checkout=https | |
- name: Build | |
working-directory: . | |
run: make | |
- name: Doc | |
working-directory: . | |
run: make doc | |
- name: Tests | |
working-directory: . | |
run: make test | |