Windows CI: Add make install step on the shared 64 bit build
authorTomas Mraz <tomas@openssl.org>
Mon, 24 May 2021 10:16:00 +0000 (12:16 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 25 May 2021 09:53:36 +0000 (11:53 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/15433)

.github/workflows/windows.yml

index 56489408b5a35a94b00e327de5c4a32e49a8719e..80dfb7921c830a5a00afe95895a6080dae02137a 100644 (file)
@@ -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: