2020-05-30 11:07:23 +00:00
|
|
|
name: Windows
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: install Clang
|
2020-05-30 11:41:18 +00:00
|
|
|
run: choco install -y llvm
|
2020-05-30 11:07:23 +00:00
|
|
|
- name: cmake
|
2020-05-30 11:41:18 +00:00
|
|
|
run: cmake -S . -B build -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
|
2020-05-30 11:07:23 +00:00
|
|
|
- name: build
|
|
|
|
run: cmake --build build --parallel 10
|
|
|
|
- name: test
|
|
|
|
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
|
2020-05-30 11:41:18 +00:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
path: C:\ProgramData\chocolatey\logs\chocolatey.log
|