From 5dc27959d5c0e45cc0cc6133a9ef676cc15d44bd Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Mon, 6 Jan 2014 12:19:51 -0800 Subject: chore(build): refactor build scripts in prepare/publish phase Refactored all scripts so that they are divided into a `prepare` and a `publish` phase. By this we can build, test, tag, commit everything first. Only if all of this is ok we start pushing to Github. By this we keep Github consistent even in error cases. Extracted include script `/scripts/utils.inc`: - parse and validate named arguments in the style `--name=value` - proxy git command and deactivate `git push` based on command option `--git_push_dry_run=true` (will be inherited to child scripts) - enable/disable bash debug mode by command option `--verbose=true` - dispatch to functions based on command option `--action=...` - helper functions for dealing with json files --- scripts/jenkins/bump-increment.sh | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100755 scripts/jenkins/bump-increment.sh (limited to 'scripts/jenkins/bump-increment.sh') diff --git a/scripts/jenkins/bump-increment.sh b/scripts/jenkins/bump-increment.sh deleted file mode 100755 index 5e8e4fc7..00000000 --- a/scripts/jenkins/bump-increment.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -echo "############################################" -echo "## Increment version and add "-snapshot" ##" -echo "############################################" - -if [ "$1" != "patch" -a "$1" != "minor" -a "$1" != "major" ]; then - echo "Please specify the next version type: patch|minor|major" - exit 1 -fi -BUMP_TYPE=$1 - -# Enable tracing and exit on first failure -set -xe -# Normalize working dir to script dir -cd `dirname $0`/../.. - -echo "-- increment version " -grunt bump:$BUMP_TYPE -NEXT_VERSION=`sed -En 's/.*"version"[ ]*:[ ]*"(.*)".*/\1/p' package.json` -sed -i .tmp -E 's/"version": "(.*)"/"version": "\1-snapshot"/' package.json -echo "-- new version: `grep '"version"' package.json`" -echo "-- commit" -git add package.json -git commit -m "chore(release): start v$NEXT_VERSION" \ No newline at end of file -- cgit v1.2.3