Skip to content

Merge branch 'develop' #2115

Merge branch 'develop'

Merge branch 'develop' #2115

Workflow file for this run

name: build
on:
push:
branches-ignore:
- gh-pages
pull_request:
branches-ignore:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install utilities
run: |
sudo apt-get install -y cmake wget graphviz
#sudo apt-get install -y build-essential checkinstall zlib1g-dev libcrypto++-dev libssl-dev
- name: Build
run: |
mkdir build
cd build
cmake .. -DBUILD_SUPERBUILD=ON -DBUILD_HPC=OFF -DBUILD_TESTS=ON -DBUILD_DIST=OFF -DBUILD_RUNTIME=OFF
make
- name: Test
run: |
cd build
bin/unit_tests