summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-05-24 12:16:00 +0200
committerTomas Mraz <tomas@openssl.org>2021-05-25 11:53:36 +0200
commit3113192705b27958609f525725f830d046f0ded7 (patch)
tree2dff43165d6301031b31a2d97af315935982698b /.github
parent4f7fc52979ab3a5ff28defd0972b70bbae72a1f7 (diff)
Windows CI: Add make install step on the shared 64 bit build
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/15433)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 56489408b5..80dfb7921c 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -33,6 +33,13 @@ jobs:
- name: test
working-directory: _build
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+ - name: install
+ # Run on 64 bit only as 32 bit is slow enough already
+ if: $${{ matrix.arch == 'win64' }}
+ run: |
+ mkdir _dest
+ nmake install DESTDIR=_dest
+ working-directory: _build
plain:
runs-on: windows-latest
steps: