Skip to content

Release 0.4.0

Release 0.4.0 #26

Workflow file for this run

name: Tests Linux
on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install packages
run: |
sudo apt-get -y update
sudo apt-get -y install build-essential pkg-config cmake
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Run CMake
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE $GITHUB_WORKSPACE
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: make -j 8