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