Add 3.3 branch and remove obsolete ones in tools

Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/tools/pull/185)
This commit is contained in:
Tomas Mraz 2024-03-22 10:53:08 +01:00
parent f86e03b3fd
commit 39e3169cda
2 changed files with 4 additions and 6 deletions

View File

@ -6,12 +6,10 @@ test -f ./config || {
exit 1
}
git checkout --quiet OpenSSL_1_0_2-stable ; git pull --rebase
git checkout --quiet OpenSSL_1_1_0-stable ; git pull --rebase
git checkout --quiet OpenSSL_1_1_1-stable ; git pull --rebase
git checkout --quiet openssl-3.0 ; git pull --rebase
git checkout --quiet openssl-3.1 ; git pull --rebase
git checkout --quiet openssl-3.2 ; git pull --rebase
git checkout --quiet openssl-3.3 ; git pull --rebase
git checkout --quiet master
git rebase -p origin/master

View File

@ -48,9 +48,6 @@ case $b in
*1*0*2*)
TARGET=OpenSSL_1_0_2-stable
;;
*1*1*0*)
TARGET=OpenSSL_1_1_0-stable
;;
*1*1*1*)
TARGET=OpenSSL_1_1_1-stable
;;
@ -63,6 +60,9 @@ case $b in
*3*2*)
TARGET=openssl-3.2
;;
*3*3*)
TARGET=openssl-3.3
;;
m*)
TARGET=master
;;