aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-05-31 14:22:35 +0200
committerTomas Mraz <tomas@openssl.org>2021-06-01 15:07:51 +0200
commit86825c99172f46da40867292a0eeebb2ef289c02 (patch)
tree28b67986a1e99bb6ddaeab58052598372bd569ea /.github
parente47ed5fe1faff9b5f9c3112bfcbf7c5165eabf33 (diff)
downloadopenssl-86825c99172f46da40867292a0eeebb2ef289c02.zip
openssl-86825c99172f46da40867292a0eeebb2ef289c02.tar.gz
openssl-86825c99172f46da40867292a0eeebb2ef289c02.tar.bz2
Windows CI: enable fips on shared 64 bit build
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15550)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 0d0b594..0de6e22 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -24,15 +24,15 @@ jobs:
- name: config
working-directory: _build
run: |
- if ( "${{ matrix.arch }}" -eq "win32" ) { $target = "VC-WIN32" } else { $target = "VC-WIN64A" }
- perl ..\Configure --banner=Configured no-makedepend no-fips $target
+ if ( "${{ matrix.arch }}" -eq "win32" ) { $target = "VC-WIN32" ; $fips = "no-fips" } else { $target = "VC-WIN64A" ; $fips = "enable-fips" }
+ perl ..\Configure --banner=Configured no-makedepend $fips $target
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*
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
- name: install
# Run on 64 bit only as 32 bit is slow enough already
if: $${{ matrix.arch == 'win64' }}
@@ -57,7 +57,7 @@ jobs:
run: nmake
- name: test
working-directory: _build
- run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
minimal:
runs-on: windows-latest
steps:
@@ -75,4 +75,4 @@ jobs:
run: nmake
- name: test
working-directory: _build
- run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4