hydra/t/jobs/git-update.sh

57 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2012-04-15 01:17:35 +00:00
#! /bin/sh
# This script is used both by git & deepgit checks.
2013-01-22 13:41:02 +00:00
set -e
2012-04-15 01:17:35 +00:00
repo=git-repo
export HOME=$(pwd)
export XDG_CONFIG_HOME=$(pwd)/.config
STATE_FILE=$(pwd)/.git-state
2012-04-15 01:17:35 +00:00
if test -e $STATE_FILE; then
state=$(cat $STATE_FILE)
test $state -gt 3 && state=0
2012-04-15 01:17:35 +00:00
else
state=0;
fi
2013-01-22 13:41:02 +00:00
echo "STATE: $state"
2012-04-15 01:17:35 +00:00
case $state in
2013-01-22 13:41:02 +00:00
(0) echo "::Create repo. -- continue -- updated::"
git init $repo
cd $repo
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
touch foo
git add foo
git commit -m "Add foo"
git tag -a -m "First Tag." tag0
2012-04-15 01:17:35 +00:00
;;
(1) echo "::Create new commit. -- continue -- updated::"
cd $repo
# Increase depth to make sure the tag is not fetched by default.
echo 0 > foo
git add foo
git commit -m "Increase depth 0"
echo 1 > foo
git add foo
git commit -m "Increase depth 1"
echo 2 > foo
git add foo
git commit -m "Increase depth 2"
echo 0 > bar
git add bar
git commit -m "Add bar with 0"
;;
(2) echo "::Amend commit. (push -f) -- continue -- updated::"
cd $repo
echo 1 > bar
git add bar
git commit --amend -m "Add bar with 1"
;;
(*) echo "::End. -- stop -- nothing::"
rm -rf $repo
2012-04-15 01:17:35 +00:00
;;
esac
echo $(($state + 1)) > $STATE_FILE