datadog
doc
src
tests
jobs
basic.nix
build-output-as-input.nix
build-product-simple.sh
build-product-with-spaces.sh
build-products.nix
bzr-checkout-input.nix
bzr-checkout-update.sh
bzr-input.nix
bzr-update.sh
config.nix.in
darcs-input.nix
darcs-update.sh
deepgit-builder.sh
deepgit-input.nix
empty-dir-builder.sh
fail.sh
git-input.nix
git-rev-input.nix
git-rev-update.sh
git-update.sh
hg-input.nix
hg-update.sh
scm-builder.sh
succeed-with-failed.sh
svn-checkout-input.nix
svn-checkout-update.sh
svn-input.nix
svn-update.sh
Makefile.am
Setup.pm
api-test.nix
api-test.pl
evaluation-tests.pl
s3-backup-test.config
s3-backup-test.pl
set-up.pl
tear-down.pl
.gitignore
COPYING
INSTALL
Makefile.am
README.md
bootstrap
configure.ac
hydra-module.nix
release.nix
shell.nix
version
31 lines
639 B
Bash
Executable File
31 lines
639 B
Bash
Executable File
#! /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"
|
|
;;
|
|
(*) echo "::End. -- stop -- nothing::"
|
|
rm -rf $repo
|
|
;;
|
|
esac
|