Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Output git fetch/push to log files (#2862)
Browse files Browse the repository at this point in the history
* add -q options for fetch & push

* Store log in .gitignored location

* update GITLOG command location

* Remove test branch
  • Loading branch information
jacogr authored and gavofyork committed Oct 25, 2016
1 parent 03e2aa6 commit e71c752
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions js/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ function setup_git_user {
}

# change into the build directory
pushd `dirname $0`
BASEDIR=`dirname $0`
GITLOG=./.git/gitcommand.log
pushd $BASEDIR
cd ../.build

# variables
Expand All @@ -33,12 +35,12 @@ git init
# add local files and send it up
setup_git_user
git remote add origin https://${GITHUB_JS_PRECOMPILED}:@github.com/ethcore/js-precompiled.git
git fetch origin
git fetch origin 2>$GITLOG
git checkout -b $CI_BUILD_REF_NAME
git add .
git commit -m "$UTCDATE [compiled]"
git merge origin/$CI_BUILD_REF_NAME -X ours --commit -m "$UTCDATE [release]"
git push origin $CI_BUILD_REF_NAME
git push origin $CI_BUILD_REF_NAME 2>$GITLOG

# back to root
popd
Expand All @@ -49,10 +51,10 @@ cargo update -p parity-ui-precompiled
# add to git and push
setup_git_user
git remote set-url origin https://${GITHUB_JS_PRECOMPILED}:@github.com/ethcore/parity.git
git fetch origin
git fetch origin 2>$GITLOG
git add . || true
git commit -m "[ci skip] js-precompiled $UTCDATE" || true
git push origin || true
git push origin $CI_BUILD_REF_NAME 2>$GITLOG || true

# exit with exit code
exit 0

0 comments on commit e71c752

Please sign in to comment.