json/.github/workflows/windows_clang.yml
Niels Lohmann 4ba8c95794
👷 install clang
2020-05-30 13:41:18 +02:00

22 lines
612 B
YAML

name: Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: install Clang
run: choco install -y llvm
- name: cmake
run: cmake -S . -B build -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
- 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
- uses: actions/upload-artifact@v2
with:
path: C:\ProgramData\chocolatey\logs\chocolatey.log