Skip to content

Add combination of bonds primitive and trust radius optimiser #1043

Add combination of bonds primitive and trust radius optimiser

Add combination of bonds primitive and trust radius optimiser #1043

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