Merge pull request #1193 from NilsIrl/cmake_github_action

[IMPROVEMENT] Add Cmake job to github action
This commit is contained in:
Willem 2020-01-18 21:45:30 +01:00 committed by GitHub
commit 54ecce8b86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,3 +52,12 @@ jobs:
- name: make
run: make
working-directory: ./linux
cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
run: make -j$(nproc)
working-directory: build