diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-30 05:04:52 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-04-01 01:11:34 +0200 |
commit | 6ec37db540b20ade2a10b8809112844b0e0f999f (patch) | |
tree | a7e3255efd4585120f1a9ed6cd9ae51c4f049eb3 /.github/workflows | |
parent | Add a range check (from SP800-56Ar3) to DH key derivation. (diff) | |
download | openssl-6ec37db540b20ade2a10b8809112844b0e0f999f.tar.xz openssl-6ec37db540b20ade2a10b8809112844b0e0f999f.zip |
Test miminal windows build using Github actions
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14737)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/windows.yml | 23 |
1 files changed, 23 insertions, 0 deletions
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@v2 + - uses: ilammy/msvc-dev-cmd@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 |