Add a GitHub action for building with CMake.
This commit is contained in:
parent
da20219f27
commit
e96c5dbdec
1 changed files with 11 additions and 0 deletions
11
.github/workflows/c-cpp.yml
vendored
11
.github/workflows/c-cpp.yml
vendored
|
|
@ -18,6 +18,17 @@ jobs:
|
|||
- name: make
|
||||
run: make
|
||||
|
||||
build-cmake:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: cmake
|
||||
run: cmake .
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
build-cmake-mingw:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue