Skip to content

Update cmake.yml

Update cmake.yml #14

Workflow file for this run

name: CMake
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jbeder/yaml-cpp@0.8.0
- uses: mpi4py/setup-mpi@v1
- name: Get ExaNBody
run: git clone https://github.com/Collab4exaNBody/exaNBody.git
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DexaNBody_DIR=${{github.workspace}}/exaNBody
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test Example
working-directory: ${{github.workspace}}/build
run: ctest --test-dir example -C --rerun-failed --output-on-failure ${{env.BUILD_TYPE}}