aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-08 15:54:49 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-08 15:54:49 +0300
commit7ca1c2f47786f13acc45eb39502faeaebe4fb511 (patch)
tree269e24468c8d5875f27a527cdb1825d63702793d /.github/workflows/ci.yml
parentworkflows/ci: remove redundant parameter (diff)
downloadprivilege-check-7ca1c2f47786f13acc45eb39502faeaebe4fb511.tar.gz
privilege-check-7ca1c2f47786f13acc45eb39502faeaebe4fb511.zip
workflows/ci: build using VS 2015 also
Diffstat (limited to '')
-rw-r--r--.github/workflows/ci.yml17
1 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3b449fe..e1ef36e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,17 +12,18 @@ jobs:
build:
strategy:
matrix:
- # MinGW builds are done on Linux, since it's more up-to-date there, and
- # it's much faster.
- os: [ubuntu-20.04, windows-2016, windows-2019]
+ toolset: [mingw, vs2015, vs2017, vs2019]
platform: [x64, x86]
configuration: [Debug, Release]
include:
- - {os: windows-2016, toolset: msvc}
- - {os: windows-2019, toolset: msvc}
- - {os: ubuntu-20.04, toolset: mingw}
+ # MinGW builds are done on Linux, since it's more up-to-date there,
+ # and it's much faster.
+ - {toolset: mingw, os: ubuntu-20.04}
+ - {toolset: vs2015, os: windows-2016}
+ - {toolset: vs2017, os: windows-2016}
+ - {toolset: vs2019, os: windows-2019}
runs-on: '${{ matrix.os }}'
- name: 'Build: ${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}'
+ name: 'Build: ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}'
defaults:
run:
shell: pwsh
@@ -47,6 +48,6 @@ jobs:
- name: Upload binaries
uses: actions/upload-artifact@v2
with:
- name: 'pdb-repo-${{ matrix.os }}-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
+ name: 'pdb-repo-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
path: '${{ runner.workspace }}/build/install/'
if-no-files-found: error