1
0
forked from boostorg/mp11

Remove msvc-14.1 from GHA; add clang-win

This commit is contained in:
Peter Dimov
2022-04-14 16:16:37 +03:00
parent 8faca18e01
commit 590df5e0bc

View File

@ -145,10 +145,6 @@ jobs:
matrix:
include:
# msvc-14.0 not included, because it fails with "compiler is out of heap space"
- toolset: msvc-14.1
cxxstd: "14,17,latest"
addrmd: 32,64
os: windows-2019
- toolset: msvc-14.2
cxxstd: "14,17,20,latest"
addrmd: 32,64
@ -157,6 +153,10 @@ jobs:
cxxstd: "14,17,20,latest"
addrmd: 32,64
os: windows-2022
- toolset: clang-win
cxxstd: "14,17,latest"
addrmd: 32,64
os: windows-2022
- toolset: gcc
cxxstd: "03,11,14,17,2a"
addrmd: 64
@ -167,12 +167,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Visual Studio 2017
if: matrix.toolset == 'msvc-14.1'
run: |
choco install visualstudio2017community
choco install visualstudio2017-workload-universal
- name: Setup Boost
shell: cmd
run: |
@ -199,7 +193,7 @@ jobs:
shell: cmd
run: |
cd ../boost-root
b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} variant=debug,release
b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} variant=debug,release embed-manifest-via=linker
posix-cmake-subdir:
strategy: