Skip to content

Minimal unitig size added as command line option. #145

Minimal unitig size added as command line option.

Minimal unitig size added as command line option. #145

Workflow file for this run

name: raven CI
on:
push:
pull_request:
branches:
- master
env:
BUILD_TYPE: Release
jobs:
test:
strategy:
matrix:
compiler:
- g++
- g++-7
- clang++
- clang++-8
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- if: ${{ matrix.compiler == 'g++-7' }}
name: Setup GCC
uses: egor-tensin/setup-gcc@v1
with:
version: "7"
platform: x64
- if: ${{ matrix.compiler == 'clang++-8' }}
name: Setup Clang
uses: egor-tensin/setup-clang@v1
with:
version: "8"
platform: x64
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DRAVEN_BUILD_TESTS=1 -DRAVEN_BUILD_EXE=1
env:
CXX: ${{ matrix.compiler }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ env.BUILD_TYPE }}
- name: Test
working-directory: ${{ github.workspace }}/build
run: |
bin/raven --version
bin/RavenTest