Update libcxx/vector #802
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSVC | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
include: | |
# Visual Studio 2022 | |
- toolset: '14.4' | |
arch: 'x64' | |
build_type: 'Release' | |
flags: '/std:c++latest /WX /wd4702' | |
win_ver: '2022' | |
- toolset: '14.4' | |
arch: 'x64' | |
build_type: 'Release' | |
flags: '/std:c++latest /WX /wd4702 /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO' | |
win_ver: '2022' | |
- toolset: '14.4' | |
arch: 'x64' | |
build_type: 'Debug' | |
flags: '/std:c++latest /WX' | |
win_ver: '2022' | |
- toolset: '14.4' | |
arch: 'x64' | |
build_type: 'Debug' | |
flags: '/std:c++latest /WX /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO' | |
win_ver: '2022' | |
- toolset: '14.4' | |
arch: 'x86' | |
build_type: 'Release' | |
flags: '/std:c++latest /WX /wd4702' | |
win_ver: '2022' | |
- toolset: '14.4' | |
arch: 'x86' | |
build_type: 'Release' | |
flags: '/std:c++latest /WX /wd4702 /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO' | |
win_ver: '2022' | |
# Linker ran out of heap space | |
# - toolset: '14.4' | |
# arch: 'x86' | |
# build_type: 'Debug' | |
# flags: '/std:c++latest /WX' | |
# win_ver: '2022' | |
# - toolset: '14.4' | |
# arch: 'x86' | |
# build_type: 'Debug' | |
# flags: '/std:c++latest /WX /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO' | |
# win_ver: '2022' | |
runs-on: windows-${{ matrix.win_ver }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Ninja | |
run: choco install ninja | |
- name: Setup MSVC | |
uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: ${{ matrix.arch }} | |
toolset: ${{ matrix.toolset }} | |
- name: Build | |
env: | |
CXXFLAGS: ${{ matrix.flags }} | |
run: | | |
cd test | |
mkdir build | |
cd build | |
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
cmake --build . -v | |
- name: Test | |
run: test/build/momo_test.exe |