propellor spin

This commit is contained in:
Joey Hess 2014-04-01 18:15:21 -04:00
parent a1c43469f6
commit 6d425cba7c
Failed to extract signature
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ builder :: Architecture -> CronTimes -> Property
builder arch crontimes = combineProperties "gitannexbuilder" builder arch crontimes = combineProperties "gitannexbuilder"
[ Apt.stdSourcesList Unstable [ Apt.stdSourcesList Unstable
, Apt.buildDep ["git-annex"] , Apt.buildDep ["git-annex"]
, Apt.installed ["git", "rsync", "moreutils", , Apt.installed ["git", "rsync", "moreutils", "ca-certificates",
"liblockfile-simple-perl", "cabal-install"] "liblockfile-simple-perl", "cabal-install"]
, serviceRunning "cron" `requires` Apt.installed ["cron"] , serviceRunning "cron" `requires` Apt.installed ["cron"]
, User.accountFor builduser , User.accountFor builduser
@ -29,7 +29,7 @@ builder arch crontimes = combineProperties "gitannexbuilder"
, "git clone https://git-annex.branchable.com/ build" , "git clone https://git-annex.branchable.com/ build"
] ]
`describe` "gitbuilder setup" `describe` "gitbuilder setup"
, Cron.niceJob "gitannexbuilder" crontimes builduser "~/gitbuilder" "./autobuild" , Cron.niceJob "gitannexbuilder" crontimes builduser "~/gitbuilder" "git pull ; ./autobuild"
, check (lacksdir $ builddir </> "git-annex") $ userScriptProperty builduser , check (lacksdir $ builddir </> "git-annex") $ userScriptProperty builduser
[ "cd gitbuilder" [ "cd gitbuilder"
, "git clone https://git-annex.branchable.com/ git-annex" , "git clone https://git-annex.branchable.com/ git-annex"