-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
vdelendik
committed
Aug 15, 2023
1 parent
c997209
commit f576338
Showing
2 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/bash | ||
|
||
# shellcheck disable=SC1091 | ||
source patch/utility.sh | ||
|
||
TARGET_VERSION=2.4 | ||
|
||
source backup/settings.env | ||
SOURCE_VERSION=${ZBR_VERSION} | ||
#echo SOURCE_VERSION: $SOURCE_VERSION | ||
|
||
if ! [[ "${TARGET_VERSION}" > "${SOURCE_VERSION}" ]]; then | ||
#target Zebrunner version less or equal existing | ||
echo "No need to perform upgrade to ${TARGET_VERSION}" | ||
exit 2 | ||
fi | ||
|
||
echo "Upgrading Zebrunner from ${SOURCE_VERSION} to ${TARGET_VERSION}" | ||
|
||
# apply nginx changes | ||
|
||
#apply mcloud changes | ||
if [[ ! -f mcloud/.disabled ]] ; then | ||
cp mcloud/.env mcloud/.env_2.3 | ||
cp mcloud/variables.env mcloud/variables.env_2.3 | ||
|
||
mcloud/zebrunner.sh setup | ||
fi | ||
|
||
#apply jenkins changes | ||
if [[ ! -f jenkins/.disabled ]] ; then | ||
cp jenkins/variables.env jenkins/variables.env_2.3 | ||
jenkins/zebrunner.sh setup | ||
fi | ||
|
||
# apply selenoid changes | ||
if [[ ! -f selenoid/.disabled ]] ; then | ||
cp selenoid/.env selenoid/.env_2.3 | ||
selenoid/zebrunner.sh setup | ||
fi | ||
|
||
echo "Upgrade to ${TARGET_VERSION} finished successfully" | ||
|
||
#remember successfully applied version in settings.env file | ||
export ZBR_VERSION=${TARGET_VERSION} | ||
|
||
#save information about upgraded zebrunner version | ||
export_settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters