👷 install clang

pull/2259/head
Niels Lohmann 2020-05-30 13:41:18 +02:00
parent fbd3e8f677
commit 4ba8c95794
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
1 changed files with 5 additions and 2 deletions

View File

@ -10,10 +10,13 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: install Clang
run: choco install -y clang
run: choco install -y llvm
- name: cmake
run: cmake -S . -B build -DCMAKE_CXX_COMPILER=C:\Program Files\LLVM\bin\clang++ -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
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