diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..212ce82 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,36 @@ +name: C/C++ CI + +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + continue-on-error: true + strategy: + matrix: + compiler: + - { name: Clang, cc: clang, cxx: clang++ } + - { name: GNU, cc: gcc, cxx: g++ } + argument: [""] + timeout-minutes: 60 + steps: + - name: Install dependencies + run: sudo apt-get install -y libopenmpi-dev pybind11-dev + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Export compiler + run: | + echo CXX=${{ matrix.compiler.cxx }} >> $GITHUB_ENV + echo CC=${{ matrix.compiler.cc }} >> $GITHUB_ENV + - name: Build + run: ./compile_withcmake.sh ${{ matrix.argument }} + +