Add eval test for specific git revision

This commit is contained in:
Shea Levy
2016-04-12 16:27:11 -04:00
parent 49f94bac3a
commit 10e036238c
3 changed files with 49 additions and 1 deletions

View File

@ -0,0 +1,10 @@
with import ./config.nix;
{ src }:
{
copy =
mkDerivation {
name = "git-rev-input";
builder = ./scm-builder.sh;
inherit src;
};
}

31
tests/jobs/git-rev-update.sh Executable file
View File

@ -0,0 +1,31 @@
#! /bin/sh
set -e
repo=git-repo
export HOME=$(pwd)
STATE_FILE=$(pwd)/.git-rev-state
if test -e $STATE_FILE; then
state=1
rm $STATE_FILE
else
state=0
touch $STATE_FILE
fi
echo "STATE: $state"
case $state in
(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_AUTHOR_DATE="1970-01-01T00:00:00 +0000" GIT_COMMITTER_DATE="1970-01-01T00:00:00 +0000" git commit -m "Add foo"
git tag -a -m "First Tag." tag0
;;
(*) echo "::End. -- stop -- nothing::"
rm -rf $repo
;;
esac