2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Add a job with /arch:SSE4.2 that defines BOOST_UUID_USE_SSE41 to ci.yml

This commit is contained in:
Peter Dimov
2026-01-06 15:48:08 +02:00
parent 029527c109
commit 974f7f7387

View File

@@ -376,6 +376,12 @@ jobs:
cxxstd: "14,17,20,latest"
addrmd: 64
os: windows-2022
- toolset: msvc-14.3
arch: "SSE4.2"
define: BOOST_UUID_USE_SSE41
cxxstd: "14,17,20,latest"
addrmd: 64
os: windows-2022
- toolset: msvc-14.3
arch: "AVX"
cxxstd: "14,17,20,latest"
@@ -438,7 +444,7 @@ jobs:
shell: cmd
run: |
cd ../boost-root
b2 -j2 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} variant=debug,release embed-manifest-via=linker ${{ matrix.arch && format('cxxflags=/arch:{0}', matrix.arch) }}
b2 -j2 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} variant=debug,release embed-manifest-via=linker ${{ matrix.arch && format('cxxflags=/arch:{0}', matrix.arch) }} ${{ matrix.define && format('define={0}', matrix.define) }}
posix-cmake-subdir:
strategy: