2020-05-13 02:30:11 +08:00
|
|
|
name: Windows
|
2019-09-03 03:35:53 +08:00
|
|
|
|
2020-05-18 20:01:54 +08:00
|
|
|
on: [push, pull_request]
|
2019-09-03 03:35:53 +08:00
|
|
|
|
|
|
|
jobs:
|
2020-07-22 15:02:55 +08:00
|
|
|
msvc2019:
|
2020-05-13 02:30:11 +08:00
|
|
|
runs-on: windows-latest
|
2020-05-13 02:26:17 +08:00
|
|
|
|
2019-09-03 03:35:53 +08:00
|
|
|
steps:
|
2021-03-24 14:15:18 +08:00
|
|
|
- uses: actions/checkout@v2
|
2019-09-03 03:35:53 +08:00
|
|
|
- name: cmake
|
2020-05-27 19:22:14 +08:00
|
|
|
run: cmake -S . -B build -G "Visual Studio 16 2019" -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
|
2019-09-03 04:15:11 +08:00
|
|
|
- name: build
|
2020-05-13 02:45:18 +08:00
|
|
|
run: cmake --build build --parallel 10
|
2019-09-03 04:15:11 +08:00
|
|
|
- name: test
|
2020-05-19 19:45:52 +08:00
|
|
|
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
|
2020-07-22 15:02:55 +08:00
|
|
|
|
|
|
|
clang10:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2021-03-24 14:15:18 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-07-22 15:02:55 +08:00
|
|
|
- name: install Clang
|
|
|
|
run: curl -fsSL -o LLVM10.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win64.exe ; 7z x LLVM10.exe -y -o"C:/Program Files/LLVM"
|
|
|
|
- name: cmake
|
|
|
|
run: cmake -S . -B build -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang++.exe" -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
|
|
|
|
|
|
|
|
clang-cl-10-x64:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2021-03-24 14:15:18 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-07-22 15:02:55 +08:00
|
|
|
- name: cmake
|
|
|
|
run: cmake -S . -B build -G "Visual Studio 16 2019" -A x64 -T ClangCL -DJSON_BuildTests=On
|
|
|
|
- name: build
|
|
|
|
run: cmake --build build --config Debug --parallel 10
|
|
|
|
- name: test
|
|
|
|
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
|
|
|
|
|
|
|
|
clang-cl-10-x86:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2021-03-24 14:15:18 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-07-22 15:02:55 +08:00
|
|
|
- name: cmake
|
|
|
|
run: cmake -S . -B build -G "Visual Studio 16 2019" -A Win32 -T ClangCL -DJSON_BuildTests=On
|
|
|
|
- name: build
|
|
|
|
run: cmake --build build --config Debug --parallel 10
|
|
|
|
- name: test
|
|
|
|
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
|