From 3113192705b27958609f525725f830d046f0ded7 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Mon, 24 May 2021 12:16:00 +0200 Subject: [PATCH] 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) --- .github/workflows/windows.yml | 7 +++++++ 1 file changed, 7 insertions(+) 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: -- 2.34.1