File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Windows
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ clang-cl-10-x64 :
7
+
8
+ runs-on : windows-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - name : cmake
13
+ run : cmake -S . -B build -G "Visual Studio 16 2019" -A x64 -T ClangCL -DJSON_BuildTests=On
14
+ - name : build
15
+ run : cmake --build build --config Debug --parallel 10
16
+ - name : test
17
+ run : cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
18
+
19
+ clang-cl-10-x86 :
20
+
21
+ runs-on : windows-latest
22
+
23
+ steps :
24
+ - uses : actions/checkout@v1
25
+ - name : cmake
26
+ run : cmake -S . -B build -G "Visual Studio 16 2019" -A Win32 -T ClangCL -DJSON_BuildTests=On
27
+ - name : build
28
+ run : cmake --build build --config Debug --parallel 10
29
+ - name : test
30
+ run : cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
Original file line number Diff line number Diff line change @@ -1254,6 +1254,7 @@ The following compilers are currently used in continuous integration at [Travis]
1254
1254
| MSVC 19.16.27035.0 (15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | AppVeyor |
1255
1255
| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | AppVeyor |
1256
1256
| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | GitHub Actions |
1257
+ | MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) with ClangCL 10.0.0 | Windows-10.0.17763 | GitHub Actions |
1257
1258
1258
1259
## License
1259
1260
You can’t perform that action at this time.
0 commit comments