Skip to content

Commit

Permalink
Merge pull request #169 from boostorg/windows_jobs
Browse files Browse the repository at this point in the history
Add msvc-14.0 and clang-win to GHA Windows jobs
  • Loading branch information
Flamefire authored Jun 8, 2022
2 parents 376479c + 0c22052 commit fb621d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,11 @@ jobs:
fail-fast: false
matrix:
include:
- { toolset: msvc-14.0, cxxstd: '14,latest', addrmd: '32,64', os: windows-2019 }
- { toolset: msvc-14.2, cxxstd: '14,17,20', addrmd: '32,64', os: windows-2019 }
- { name: Collect coverage, coverage: yes,
toolset: msvc-14.3, cxxstd: '14,17,20', 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', os: windows-2019 }

runs-on: ${{matrix.os}}
Expand Down
6 changes: 6 additions & 0 deletions ci/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ set SELF_S=%SELF:\=/%
IF NOT DEFINED B2_TARGETS (SET B2_TARGETS=libs/!SELF_S!/test)
IF NOT DEFINED B2_JOBS (SET B2_JOBS=3)

REM clang-win requires to use the linker for the manifest on Github Actions
IF DEFINED GITHUB_ACTIONS IF "%B2_TOOLSET%" == "clang-win" (
IF NOT DEFINED B2_FLAGS (SET B2_FLAGS=embed-manifest-via=linker)
ELSE (SET B2_FLAGS=embed-manifest-via=linker %B2_FLAGS%)
)

cd %BOOST_ROOT%

IF DEFINED SCRIPT (
Expand Down

0 comments on commit fb621d3

Please sign in to comment.