mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 06:21:43 +08:00
d0364dcc42
Use it in the automated workflows. Fixes: #15247 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15248)
24 lines
644 B
YAML
24 lines
644 B
YAML
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 --banner=Configured 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
|