From 4ba8c9579421e023907b385639a1bfd7c5374353 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 30 May 2020 13:41:18 +0200 Subject: [PATCH] :construction_worker: install clang --- .github/workflows/windows_clang.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows_clang.yml b/.github/workflows/windows_clang.yml index e9f556775..7ca442fdf 100644 --- a/.github/workflows/windows_clang.yml +++ b/.github/workflows/windows_clang.yml @@ -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