URI:
       tconfig.def.py - devuan-releasebot - devuan's releasebot reimplemented (scorsh version)
  HTML git clone git://parazyd.org/devuan-releasebot.git
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       tconfig.def.py (909B)
       ---
            1 # See LICENSE file for copyright and license details.
            2 
            3 """
            4 Releasebot configuration file
            5 """
            6 
            7 dryrun = True
            8 templatedir = './templates'
            9 
           10 jenkins_user = ''
           11 jenkins_pass = ''
           12 jenkins_host = 'https://ci.devuan.org'
           13 
           14 vcs_credentials = ''
           15 
           16 jobtypes = ['source', 'binaries', 'repos']
           17 
           18 allowed_distros = [
           19     'suites',
           20     'devuan',
           21     'maemo',
           22 ]
           23 
           24 default_suites = [
           25     'jessie',
           26     'ascii',
           27     'unstable',
           28 ]
           29 
           30 supported_suites = [
           31     'experimental',
           32 
           33     'unstable',
           34 
           35     'jessie',
           36     'jessie-backports',
           37     'jessie-proposed-updates',
           38     'jessie-updates',
           39 
           40     'ascii',
           41     'ascii-backports'
           42     'ascii-proposed-updates',
           43     'ascii-updates',
           44 ]
           45 
           46 architectures = [
           47     'all'
           48     'amd64',
           49     'i386',
           50     'armel',
           51     'armhf',
           52     'arm64',
           53 ]
           54 
           55 arches_any = [
           56     'amd64',
           57     'i386',
           58     'armel',
           59     'armhf',
           60     'arm64',
           61 ]
           62 
           63 arches_qemusys = [
           64     'armel_qemusys',
           65     'armhf_qemusys',
           66     'arm64_qemusys',
           67 ]