Skip to content

Daniel

Daniel #51

Workflow file for this run

# Build, test, and install on different versions of Ubuntu
name: Linux
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
# CMake configuration for basic build
CMAKE_CONFIG_FLAGS: -DCMAKE_INSTALL_PREFIX=`pwd` -DCMAKE_BUILD_TYPE=Release
jobs:
build-test-install:
strategy:
matrix:
#os: [ubuntu-18.04, ubuntu-latest]
os: [ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build ${{env.CMAKE_CONFIG_FLAGS}}
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Install
run: cmake --install ${{github.workspace}}/build