ci: skip relup test from 4.3.13

This commit is contained in:
Zaiming (Stone) Shi 2022-08-17 17:01:23 +02:00
parent 10cabddb07
commit a645a88700
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,10 @@ relup_test(){
find . -maxdepth 1 -name "${EMQX_NAME}-*-${ARCH}.zip" | find . -maxdepth 1 -name "${EMQX_NAME}-*-${ARCH}.zip" |
while read -r pkg; do while read -r pkg; do
if [[ "${pkg}" == *4.3.13* ]]; then
echo "skipping upgrade test from 4.3.13 because this release had crypto linked with openssl 1.1.1n, it was in later version rolled back (to default 1.1.1k)."
continue
fi
packagename=$(basename "${pkg}") packagename=$(basename "${pkg}")
unzip -q "$packagename" unzip -q "$packagename"
./emqx/bin/emqx start || ( tail emqx/log/emqx.log.1 && exit 1 ) ./emqx/bin/emqx start || ( tail emqx/log/emqx.log.1 && exit 1 )