Added build with MSVC on Windows

This commit is contained in:
Paul-Louis Ageneau
2020-06-19 13:30:24 +02:00
parent 2a721015f8
commit 325230404a

View File

@ -38,3 +38,19 @@ jobs:
run: (cd build; make -j2)
- name: test
run: ./build/tests
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- name: submodules
run: git submodule update --init --recursive
- name: cmake
run: cmake -B build -G "NMake Makefiles" -DUSE_JUICE=1 -DUSE_GNUTLS=0
- name: nmake
run: |
cd build
nmake
- name: test
run: build/tests.exe