Skip to content

Update to Unicode 16.0.0 #22

Update to Unicode 16.0.0

Update to Unicode 16.0.0 #22

Workflow file for this run

name: Windows
on:
push:
branches: [ main ]
paths-ignore: [ '**.md' ]
pull_request:
paths-ignore: [ '**.md' ]
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: VS 2019 C++14
os: windows-2019
generator: "Visual Studio 16 2019"
cxx_standard: 14
cmake_options: ""
- name: VS 2019 C++17
os: windows-2019
generator: "Visual Studio 16 2019"
cxx_standard: 17
cmake_options: ""
- name: VS 2022 C++14
os: windows-2022
generator: "Visual Studio 17 2022"
cxx_standard: 14
cmake_options: ""
- name: VS 2022 C++17
os: windows-2022
generator: "Visual Studio 17 2022"
cxx_standard: 17
cmake_options: ""
- name: VS 2022 Clang C++14
os: windows-2022
generator: "Visual Studio 17 2022"
cxx_standard: 14
cmake_options: "-T ClangCL"
- name: VS 2022 Clang C++17
os: windows-2022
generator: "Visual Studio 17 2022"
cxx_standard: 17
cmake_options: "-T ClangCL"
steps:
- uses: actions/checkout@v4
- name: get test data
run: test\download-tests.bat
shell: cmd
- name: cmake
run: cmake -S . -B build -G "${{ matrix.generator }}" -A x64 -DCMAKE_CXX_STANDARD=${{ matrix.cxx_standard }} ${{ matrix.cmake_options }}
- name: build
run: cmake --build build --config Release
- name: test
run: ctest --test-dir build -C Release -V