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
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
25 lines
530 B
Bash
Executable File
25 lines
530 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
repo=svn-repo
|
|
STATE_FILE=$(pwd)/.svn-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::"
|
|
svnadmin create svn-repo
|
|
svn co file://$PWD/$repo svn-checkout
|
|
touch svn-checkout/svn-file
|
|
svn add svn-checkout/svn-file
|
|
svn commit -m "add svn file" svn-checkout/svn-file
|
|
;;
|
|
(*) echo "::End. -- stop -- nothing::";;
|
|
esac
|
|
|
|
echo $(($state + 1)) > $STATE_FILE
|