From 50030e9ac3ea27e8db6ec595ea55149923595d8d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 20 Nov 2020 04:41:33 +0200 Subject: [PATCH] Add variant=debug,release; address-model=32,64 to Github Actions --- .github/workflows/posix.yml | 2 +- .github/workflows/windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index f301f95..4eee039 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -81,4 +81,4 @@ jobs: - name: Run tests run: | cd ../boost-root - ./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} + ./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f3b7143..e53683a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -48,4 +48,4 @@ jobs: shell: cmd run: | cd ../boost-root - b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} + b2 -j3 libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release address-model=32,64