Skip to content

Merge branch 'dev-patch' into dev-minor #142

Merge branch 'dev-patch' into dev-minor

Merge branch 'dev-patch' into dev-minor #142

Workflow file for this run

name: CMake
on:
push:
branches: [ "main" , "dev-minor" , "dev-patch" ]
pull_request:
branches: [ "main" , "dev-minor" , "dev-patch" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DRAMPACK_BUILD_TESTS=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} --verbose