👷 install clang
This commit is contained in:
parent
fbd3e8f677
commit
4ba8c95794
1 changed files with 5 additions and 2 deletions
7
.github/workflows/windows_clang.yml
vendored
7
.github/workflows/windows_clang.yml
vendored
|
@ -10,10 +10,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: install Clang
|
- name: install Clang
|
||||||
run: choco install -y clang
|
run: choco install -y llvm
|
||||||
- name: cmake
|
- 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
|
- name: build
|
||||||
run: cmake --build build --parallel 10
|
run: cmake --build build --parallel 10
|
||||||
- name: test
|
- name: test
|
||||||
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
|
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
|
||||||
|
|
Loading…
Reference in a new issue