-
Notifications
You must be signed in to change notification settings - Fork 29
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
Showing
1,498 changed files
with
538,860 additions
and
6,812 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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
sudo: required | ||
dist: trusty | ||
|
||
dist: trusty | ||
#services: | ||
# - docker | ||
|
||
|
@@ -31,12 +33,14 @@ script: | |
# Build | ||
# use travis_wait so it does not time_out after 10 minutes without output (unfortunately that seems to not work) | ||
# use -q so there's not too much output for travis (4Mb max) | ||
- mvn clean install -Pfull -q | ||
- travis_wait mvn clean install -Pintegration-tests -q | ||
# build assembly (there is currently missing jars in assembly when using mvn clean install...) | ||
- mvn clean package -DskipTests -q | ||
# Integrations tests | ||
- sudo logisland-docker/src/integration-test/run-all-test.sh | ||
|
||
jdk: | ||
- oraclejdk8 | ||
- openjdk8 | ||
|
||
install: | ||
- sudo sysctl -w vm.max_map_count=262144 | ||
|
@@ -45,6 +49,7 @@ notifications: | |
email: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
|
||
webhooks: | ||
urls: | ||
|
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,95 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Usage: ./bump_version.sh <major|minor|patch> - Increments the relevant version part by one. | ||
# | ||
# Usage 2: ./bump_version.sh <version-from> <version-to> | ||
# e.g: ./bump_version.sh 1.1.1 2.0 | ||
|
||
set -e | ||
|
||
# Define which files to update and the pattern to look for | ||
# $1 Current version | ||
# $2 New version | ||
function bump_files() { | ||
|
||
for i in `find . -name "pom.xml"` ; do | ||
bump $i "<version>$current_version<" "<version>$new_version<" | ||
done | ||
for i in `find . -name "*.yml"` ; do | ||
bump $i "version: $current_version" "version: $new_version" | ||
done | ||
for i in `find . -name "*.rst"` ; do | ||
bump $i "$current_version" "$new_version" | ||
done | ||
} | ||
|
||
function bump() { | ||
echo -n "Updating $1..." | ||
tmp_file=$(mktemp) | ||
rm -f "$tmp_file" | ||
sed -i '' "s/$2/$3/1w $tmp_file" $1 | ||
if [ -s "$tmp_file" ]; then | ||
echo "Done" | ||
else | ||
echo "Nothing to change" | ||
fi | ||
rm -f "$tmp_file" | ||
} | ||
|
||
function confirm() { | ||
read -r -p "$@ [Y/n]: " confirm | ||
|
||
case "$confirm" in | ||
[Nn][Oo]|[Nn]) | ||
echo "Aborting." | ||
exit | ||
;; | ||
esac | ||
} | ||
|
||
if [ "$1" == "" ]; then | ||
echo >&2 "No 'from' version set. Aborting." | ||
exit 1 | ||
fi | ||
|
||
if [ "$1" == "major" ] || [ "$1" == "minor" ] || [ "$1" == "patch" ]; then | ||
current_version=$(grep -Po '(?<="version": ")[^"]*' package.json) | ||
|
||
IFS='.' read -a version_parts <<< "$current_version" | ||
|
||
major=${version_parts[0]} | ||
minor=${version_parts[1]} | ||
patch=${version_parts[2]} | ||
|
||
case "$1" in | ||
"major") | ||
major=$((major + 1)) | ||
minor=0 | ||
patch=0 | ||
;; | ||
"minor") | ||
minor=$((minor + 1)) | ||
patch=0 | ||
;; | ||
"patch") | ||
patch=$((patch + 1)) | ||
;; | ||
esac | ||
new_version="$major.$minor.$patch" | ||
else | ||
if [ "$2" == "" ]; then | ||
echo >&2 "No 'to' version set. Aborting." | ||
exit 1 | ||
fi | ||
current_version="$1" | ||
new_version="$2" | ||
fi | ||
|
||
if ! [[ "$new_version" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
echo >&2 "'to' version doesn't look like a valid semver version tag (e.g: 1.2.3). Aborting." | ||
exit 1 | ||
fi | ||
|
||
confirm "Bump version number from $current_version to $new_version?" | ||
|
||
bump_files "$current_version" "$new_version" |
Oops, something went wrong.