Skip to content

added cpp20 test for windows #720

added cpp20 test for windows

added cpp20 test for windows #720

Workflow file for this run

name: Windows
on: [push, pull_request]
jobs:
release-test-cpp17:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_BUILD_BENCHMARKS=ON -DCMAKE_BUILD_PROFILER=ON -DCMAKE_CXX_STANDARD=17
- name: build
run: cmake --build build --parallel 10
- name: test
run: cd build ; ctest --exclude-regex "test-unicode" --output-on-failure
###############################################################################
# C++ 20 standard test:
###############################################################################
release-test-cpp20:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=20
- name: build
run: cmake --build build --parallel 10
- name: test
run: cd build ; ctest --exclude-regex "test-unicode" --output-on-failure