aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-01-25 12:24:09 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-01-25 12:32:43 +0300
commitb265ab254b23edca357fcecbd0afade26d5a66ac (patch)
tree4395624af00d71dc43ff3bfe2d65e37f39798037 /.github
parentREADME: update (diff)
downloadcmake-common-b265ab254b23edca357fcecbd0afade26d5a66ac.tar.gz
cmake-common-b265ab254b23edca357fcecbd0afade26d5a66ac.zip
project.ci: auto-fill --toolset from environment
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_github.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml
index 9f1b71e..4d6f58c 100644
--- a/.github/workflows/ci_github.yml
+++ b/.github/workflows/ci_github.yml
@@ -15,17 +15,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, windows-2019]
+ toolset: [gcc, clang, msvc]
configuration: [Debug, Release]
- include:
- # Prettier run names.
- - {os: ubuntu-18.04, name: Ubuntu}
- - {os: windows-2019, name: VS 2019}
+ exclude:
+ - {os: ubuntu-18.04, toolset: msvc}
+ - {os: windows-2019, toolset: gcc}
+ - {os: windows-2019, toolset: clang}
runs-on: '${{ matrix.os }}'
- name: '${{ matrix.name }} / ${{ matrix.configuration }}'
+ name: '${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.configuration }}'
env:
+ toolset: '${{ matrix.toolset }}'
platform: x64
configuration: '${{ matrix.configuration }}'
boost_version: 1.72.0