From: Tomas Mraz Date: Mon, 24 May 2021 10:16:00 +0000 (+0200) Subject: Windows CI: Add make install step on the shared 64 bit build X-Git-Tag: openssl-3.0.0-beta1~394 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3113192705b27958609f525725f830d046f0ded7;p=thirdparty%2Fopenssl.git Windows CI: Add make install step on the shared 64 bit build Reviewed-by: Paul Dale Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/15433) --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 56489408b5a..80dfb7921c8 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: