Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simon jentzsch patch 1 #2

Merged
merged 12 commits into from
Nov 15, 2019
43 changes: 43 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: C/C++ CI

on: [push]

jobs:
test_macos:

runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make
- name: test
run: cd build; make test

test_ubuntu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DTRANSPORTS=false -DBUILD_DOC=false -DIN3API=true -DIN3_LIB=false -DCMD=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make
- name: test
run: cd build; make test

test_win:

runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DTRANSPORTS=false -DBUILD_DOC=false -DIN3API=true -DIN3_LIB=false -DCMD=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make tests
- name: test
run: cd build; make test