summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-02-09 12:03:16 +0100
committerTomas Mraz <tomas@openssl.org>2022-02-11 09:06:07 +0100
commit0c47b8a879c6cd2d553831f930af5ee9df291eca (patch)
tree26c61d26a7104ce3ed0c25dfef84ccfb48d4d950 /.github
parentbbbd1210b43d7a7aff60ccc3c92561beaf6b2bb3 (diff)
Add test of FIPS provider from the master branch with 3.0 build
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17671)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/fips-provider.yml44
1 files changed, 43 insertions, 1 deletions
diff --git a/.github/workflows/fips-provider.yml b/.github/workflows/fips-provider.yml
index 5244d988ec..18af712b62 100644
--- a/.github/workflows/fips-provider.yml
+++ b/.github/workflows/fips-provider.yml
@@ -6,7 +6,7 @@
# https://www.openssl.org/source/license.html
name: Provider compat
-on: [push, pull_request]
+on: [push]
jobs:
fips-provider-30:
@@ -50,3 +50,45 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
working-directory: ./build
+
+ fips-provider-master:
+ runs-on: ubuntu-latest
+ steps:
+ - name: create build dirs
+ run: |
+ mkdir ./build
+ mkdir ./build-3.0
+ mkdir ./source
+ mkdir ./source-3.0
+ - uses: actions/checkout@v2
+ with:
+ repository: openssl/openssl
+ ref: openssl-3.0
+ path: source-3.0
+ - name: config 3.0
+ run: ../source-3.0/config enable-shared enable-fips
+ working-directory: ./build-3.0
+ - name: config 3.0 dump
+ run: ./configdata.pm --dump
+ working-directory: ./build-3.0
+ - name: make 3.0
+ run: make -s -j4
+ working-directory: ./build-3.0
+ - uses: actions/checkout@v2
+ with:
+ path: source
+ - name: config current
+ run: ../source/config enable-shared enable-fips
+ working-directory: ./build
+ - name: config dump
+ run: ./configdata.pm --dump
+ working-directory: ./build
+ - name: make fips provider
+ run: make -s -j4 build_modules
+ working-directory: ./build
+ - name: copy the provider
+ run: |
+ cp -a build/providers/fips.so build-3.0/providers/fips.so
+ - name: make test 3.0
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ working-directory: ./build-3.0