From a6560be6ff1fefb75d0695c20be6d4af51c2e60c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 20 Nov 2020 05:13:44 +0200 Subject: [PATCH] Add addrmd to the matrix in windows.yml --- .github/workflows/windows.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 14b845b..20ef627 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -19,12 +19,15 @@ jobs: include: - toolset: msvc-14.1 cxxstd: "14,17,latest" + addrmd: 32,64 os: windows-2016 - toolset: msvc-14.2 cxxstd: "14,17,latest" + addrmd: 32,64 os: windows-2019 - toolset: gcc cxxstd: "03,11,14,17,2a" + addrmd: 64 os: windows-2019 runs-on: ${{matrix.os}} @@ -51,4 +54,4 @@ jobs: shell: cmd run: | cd ../boost-root - b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release address-model=32,64 + b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} variant=debug,release