diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86bc234..188a9ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: