diff options
author | Pauli <ppzgs1@gmail.com> | 2024-10-01 07:16:37 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-10-02 08:11:05 +0200 |
commit | c477fa5a22ff27081b1725ecef21c61ae0d7a587 (patch) | |
tree | 157598c92b972c2ae8f03081a8321037828982f6 /.github | |
parent | ci: add 3.4 to the provider compatibility test (diff) | |
download | openssl-c477fa5a22ff27081b1725ecef21c61ae0d7a587.tar.xz openssl-c477fa5a22ff27081b1725ecef21c61ae0d7a587.zip |
ci: add 3.4 to prov-compat-label tests
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/prov-compat-label.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/prov-compat-label.yml b/.github/workflows/prov-compat-label.yml index 4ad3e2d440..d3e011f1f3 100644 --- a/.github/workflows/prov-compat-label.yml +++ b/.github/workflows/prov-compat-label.yml @@ -126,6 +126,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, @@ -193,13 +197,15 @@ 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-3.3, branch-3.2, branch-3.1, branch-3.0, + tree_a: [ 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: [ PR ] include: - tree_a: PR tree_b: branch-master - tree_a: PR + tree_b: branch-3.4 + - tree_a: PR tree_b: branch-3.3 - tree_a: PR tree_b: branch-3.2 |