Files
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-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
query-all-tables.pl
s3-backup-test.config
s3-backup-test.pl
.gitignore
COPYING
INSTALL
Makefile.am
bootstrap
configure.ac
dev-shell
hydra-module.nix
release.nix
version
hydra/tests/jobs/svn-checkout-update.sh
Nicolas Pierron 69f9175986 Add tests for "git describe --long".
* Move test logic to scm-update.sh scripts.
    * Check for "git describe --long".
2012-04-29 20:59:43 -07:00

20 lines
374 B
Bash
Executable File

#! /bin/sh
repo="$1"
STATE_FILE=$(pwd)/.svn-checkout-state
if test -e $STATE_FILE; then
state=$(cat $STATE_FILE)
test $state -gt 1 && state=0
else
state=0;
fi
case $state in
(0) echo "::Create repo. -- continue -- updated::"
ln -s svn-repo svn-checkout-repo
;;
(*) echo "::End. -- stop -- nothing::" ;;
esac
echo $(($state + 1)) > $STATE_FILE