diff options
author | Pauli <ppzgs1@gmail.com> | 2024-10-01 07:05:29 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-10-02 08:11:05 +0200 |
commit | 3cc299258c5739853eb9d4a269b55f00bde7fa39 (patch) | |
tree | 34a0035a58eee26b1015b69437570afee7eb1d00 /.github | |
parent | test: add FIPS version check for EC cofactor derive tests (diff) | |
download | openssl-3cc299258c5739853eb9d4a269b55f00bde7fa39.tar.xz openssl-3cc299258c5739853eb9d4a269b55f00bde7fa39.zip |
ci: add 3.4 to the provider compatibility test
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25583)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/provider-compatibility.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/provider-compatibility.yml b/.github/workflows/provider-compatibility.yml index 1b674f0f99..164da763da 100644 --- a/.github/workflows/provider-compatibility.yml +++ b/.github/workflows/provider-compatibility.yml @@ -125,6 +125,10 @@ jobs: dir: branch-3.3, tgz: branch-3.3.tar.gz, }, { + name: openssl-3.4, + dir: branch-3.4, + tgz: branch-3.4.tar.gz, + }, { name: master, dir: branch-master, tgz: branch-master.tar.gz, @@ -195,10 +199,11 @@ jobs: # Note that releases are not used as a test environment for # later providers. Problems in these situations ought to be # caught by cross branch testing before the release. - tree_a: [ branch-master, branch-3.3, branch-3.2, branch-3.1, branch-3.0, + tree_a: [ branch-master, branch-3.4, branch-3.3, + branch-3.2, branch-3.1, branch-3.0, openssl-3.0.0, openssl-3.0.8, openssl-3.0.9, openssl-3.1.2 ] - tree_b: [ branch-master, branch-3.3, branch-3.2, branch-3.1, - branch-3.0 ] + tree_b: [ branch-master, branch-3.4, branch-3.3, + branch-3.2, branch-3.1, branch-3.0 ] steps: - name: early exit checks id: early_exit |