Skip to content

C++ reimplementation of IDPP interpolation #1082

C++ reimplementation of IDPP interpolation

C++ reimplementation of IDPP interpolation #1082

Workflow file for this run

name: catch
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'examples/**'
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Create Build Environment
run: mkdir $GITHUB_WORKSPACE/autode/ext/build
- name: Configure CMake
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && cmake --build . --config $BUILD_TYPE
- name: Test
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && ctest -C $BUILD_TYPE --extra-verbose