[openssl] master update
shane.lontis at oracle.com
shane.lontis at oracle.com
Wed Mar 31 23:13:15 UTC 2021
The branch master has been updated
via 6ec37db540b20ade2a10b8809112844b0e0f999f (commit)
from e454a3934c287aede194cac49c8934f04bf6a04f (commit)
- Log -----------------------------------------------------------------
commit 6ec37db540b20ade2a10b8809112844b0e0f999f
Author: Shane Lontis <shane.lontis at oracle.com>
Date: Tue Mar 30 13:04:52 2021 +1000
Test miminal windows build using Github actions
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14737)
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/windows.yml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 .github/workflows/windows.yml
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 0000000000..4a871bca4f
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,23 @@
+name: Windows GitHub CI
+
+on: [pull_request, push]
+
+jobs:
+ minimal:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout at v2
+ - uses: ilammy/msvc-dev-cmd at v1
+ - name: prepare the build directory
+ run: mkdir _build
+ - name: config
+ working-directory: _build
+ run: |
+ perl ..\Configure no-makedepend no-bulk no-deprecated no-fips no-asm -DOPENSSL_SMALL_FOOTPRINT VC-WIN64A
+ perl configdata.pm --dump
+ - name: build
+ working-directory: _build
+ run: nmake
+ - name: test
+ working-directory: _build
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
More information about the openssl-commits
mailing list