-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Added build and draft release job
Added package version bump check
- Loading branch information
Showing
3 changed files
with
32 additions
and
39 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
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,31 @@ | ||
#!/bin/bash | ||
IFS=. | ||
version=($1) | ||
before_version=($2) | ||
# starting from minor of version if version shorter before_version | ||
# fill absent fields in version with zeros | ||
for ((i=${#version[@]}; i<${#before_version[@]}; i++)) | ||
do | ||
version[i]=0 | ||
done | ||
# starting from major of version | ||
for ((i=0; i<${#version[@]}; i++)) | ||
do | ||
if [[ -z ${before_version[i]} ]] | ||
then | ||
# if before_version shorter version then | ||
# fill absent fields in before_version with zeros | ||
ver2[i]=0 | ||
fi | ||
if ((10#${version[i]} > 10#${before_version[i]})) | ||
then | ||
# if version greater than before_version in most major differing field | ||
exit 0 | ||
fi | ||
if ((10#${version[i]} < 10#${before_version[i]})) | ||
then | ||
# if version is not greater in most major differing field | ||
exit 1 | ||
fi | ||
done | ||
exit 1 |