/build_cmake_mpi

Github Action template for building custom CMake and MPI Projects in Github.

Github Action template for building custom CMake and MPI Projects in Github.

MIT License

Authors

Usage/Examples

name: Build

on:
  push:
    branches: "**"
  pull_request:

env:
  # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
  BUILD_TYPE: Release

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      
      - name: Build Project
        uses: amarrerod/build_cmake_mpi@master
        with:
          variant: env.BUILD_TYPE