Set up workflow

This commit is contained in:
LaGrunge 2019-09-23 13:47:18 +03:00 committed by GitHub
parent f749aaf82b
commit 6bccf40484
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

37
.github/workflows/ccpp.yml vendored Normal file
View file

@ -0,0 +1,37 @@
name: C/C++ CI
on: [push]
jobs:
build_gcc:
name: Ubuntu GCC build and unit tests
runs-on: ubuntu-18.04
steps:
- name: Install Boost
run: sudo apt install libboost-all-dev
- name: Clone repo
uses: actions/checkout@v1
with:
submodules: true
- name: Configure
run: cmake .
- name: Build
run: make -j 8
- name: Unit tests
run: env CTEST_OUTPUT_ON_FAILURE=1 make test
build_clang:
name: MacOS Clang build and unit tests
runs-on: macOS-latest
steps:
- name: Install Boost
run: brew install boost
- name: Clone repo
uses: actions/checkout@v1
with:
submodules: true
- name: Configure
run: cmake .
- name: Build
run: make -j 8
- name: Unit tests
run: env CTEST_OUTPUT_ON_FAILURE=1 make test