summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-06-11 03:58:49 +0200
committerPauli <pauli@openssl.org>2021-06-12 14:41:51 +1000
commitdd53c2979372c40fcfce0a1de6221f1c68b157a6 (patch)
tree753a6ba1811306255b4c667b9a48dc70ca1d1f1f /.github
parent773e67ab82df4b268bd88465b70fd08ff7165904 (diff)
Windows Github CI: test in Windows 2016 as well
This brings an older version of MSVC, which may bring some "interesting" failures. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15709)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml19
1 files changed, 16 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 5c98695a70..ed82b398b6 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -4,13 +4,16 @@ on: [pull_request, push]
jobs:
shared:
- runs-on: windows-latest
# Run a job for each of the specified target architectures:
strategy:
matrix:
+ os:
+ - windows-latest
+ - windows-2016
arch:
- win64
- win32
+ runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
@@ -41,7 +44,12 @@ jobs:
nmake install DESTDIR=_dest
working-directory: _build
plain:
- runs-on: windows-latest
+ strategy:
+ matrix:
+ os:
+ - windows-latest
+ - windows-2016
+ runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
@@ -59,7 +67,12 @@ jobs:
working-directory: _build
run: nmake test VERBOSE_FAILURE=yes HARNESS_JOBS=4
minimal:
- runs-on: windows-latest
+ strategy:
+ matrix:
+ os:
+ - windows-latest
+ - windows-2016
+ runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1