2022-04-09 09:46:07 +02:00
|
|
|
module cron
|
|
|
|
|
|
|
|
import cli
|
|
|
|
import env
|
|
|
|
|
|
|
|
struct Config {
|
|
|
|
pub:
|
2022-04-30 17:56:35 +02:00
|
|
|
log_level string = 'WARN'
|
|
|
|
api_key string
|
|
|
|
address string
|
2022-05-03 16:54:12 +02:00
|
|
|
data_dir string
|
2022-04-30 17:56:35 +02:00
|
|
|
base_image string = 'archlinux:base-devel'
|
|
|
|
max_concurrent_builds int = 1
|
|
|
|
api_update_frequency int = 15
|
|
|
|
image_rebuild_frequency int = 1440
|
2022-04-30 10:40:29 +02:00
|
|
|
// Replicates the behavior of the original cron system
|
|
|
|
global_schedule string = '0 3'
|
2022-04-09 09:46:07 +02:00
|
|
|
}
|
|
|
|
|
2022-04-12 21:23:38 +02:00
|
|
|
// cmd returns the cli module that handles the cron daemon.
|
2022-04-09 09:46:07 +02:00
|
|
|
pub fn cmd() cli.Command {
|
|
|
|
return cli.Command{
|
|
|
|
name: 'cron'
|
|
|
|
description: 'Start the cron service that periodically runs builds.'
|
|
|
|
execute: fn (cmd cli.Command) ? {
|
|
|
|
config_file := cmd.flags.get_string('config-file') ?
|
|
|
|
conf := env.load<Config>(config_file) ?
|
|
|
|
|
|
|
|
cron(conf) ?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|