summaryrefslogtreecommitdiff
path: root/scorsh.cfg
blob: 01e8defea16d32ca20e655f83b22fe7fc2c8ec48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
s_spooldir: "./spool"
s_logfile: "./scorsh.log"
s_logprefix: "[scorsh]"

s_workers:
  [
     {
       w_name: catchall,
       w_repos: ["*:*"], # All branches in all repos
       w_folder: ./catchall,
       w_logfile: ./catchall/catchall.log,
       w_tagfile: "./catchall/tags.cfg",
       w_keyrings: [
                    "./catchall/catchall_keyring.asc"
                   ]
     },
     { 
       w_name: ascii,
       w_repos: ["*:suites/ascii", # branch "suites/ascii" in all the repos
                 "*:suites/ascii-updates",
                 "*:suites/ascii-security" 
                 ],
       w_folder: ./ascii,
       w_logfile: ./worker_ascii.log,
       w_tagfile: "./ascii/tags.cfg",
       w_keyrings: [
                   "./${w_folder}/ascii_keyring.asc"
                 ]
     },
     {
       w_name: ascii-side-branches ,
       w_repos: [
                 "*:suites/ascii-proposed",
                 "*:suites/ascii-proposed-updates"
                ],
       w_folder: ./ascii-side-branches,
       w_logfile: ./worker_ascii_side_branches.log,
       w_tagfile: "./ascii-side-branches/tags.cfg",
       w_keyrings: [
                      "./${w_folder}/ascii_keyring.asc",
                      "./${w_folder}/ascii_proposed_keyring.asc",
                      "./${w_folder}/ascii_proposed_updates_keyring.asc"
                   ],
      }
  ]
...