diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-03-06 11:55:13 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-03-06 11:55:13 -0400 |
| commit | e3cb320d1b2e000274ac0d61b48c2a57a08f1c89 (patch) | |
| tree | c65e8d4e69860f8565c00b94abff0d1c4ecb1430 /joeyconfig.hs | |
| parent | 8df3fb8f12bde4ad944daea819bb2dee8873f059 (diff) | |
flip arm build times while still bringing up the ancient build
Diffstat (limited to 'joeyconfig.hs')
| -rw-r--r-- | joeyconfig.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/joeyconfig.hs b/joeyconfig.hs index 0e436977..17ad6e4f 100644 --- a/joeyconfig.hs +++ b/joeyconfig.hs @@ -252,13 +252,14 @@ honeybee = host "honeybee.kitenet.net" $ props -- Runs only on weekdays. & Systemd.nspawned (GitAnnexBuilder.autoBuilderContainer GitAnnexBuilder.armAutoBuilder - Unstable ARMEL Nothing - (Cron.Times "15 6 * * 2-5") "23h") + Unstable ARMEL Nothing weekends "23h") -- Runs only on weekends. & Systemd.nspawned (GitAnnexBuilder.autoBuilderContainer GitAnnexBuilder.stackAutoBuilder - (Stable "jessie") ARMEL (Just "ancient") - (Cron.Times "15 6 * * 6-7") "23h") + (Stable "jessie") ARMEL (Just "ancient") weekdays "23h") + where + weekdays = Cron.Times "15 6 * * 2-5" + weekends = Cron.Times "15 6 * * 6-7" -- This is not a complete description of kite, since it's a -- multiuser system with eg, user passwords that are not deployed |
