예제 #1
0
def Update(config, active_master, c):
  c['status'].extend([
    V8Notifier(
        config,
        active_master,
        categories_steps={
          's390': [],
        },
        extraRecipients=[
          '*****@*****.**',
          '*****@*****.**',
          '*****@*****.**',
          # TODO(machenbach): Remove after verifying that it works.
          '*****@*****.**',
        ],
    ),
    V8Notifier(
        config,
        active_master,
        categories_steps={
          'x87': [],
        },
        extraRecipients=[
          '*****@*****.**',
          '*****@*****.**',
          '*****@*****.**',
          # TODO(machenbach): Remove after verifying that it works.
          '*****@*****.**',
        ],
    ),
  ])
예제 #2
0
def Update(config, active_master, c):
    c['status'].extend([
        V8Notifier(
            config,
            active_master,
            categories_steps={
                's390': ['runhooks', 'compile', 'Check'],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'x87': ['runhooks', 'compile', 'Check'],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
    ])
def Update(config, active_master, c):
    c['status'].extend([
        V8Notifier(
            config,
            active_master,
            categories_steps={
                '': v8_steps,
            },
            exclusions={
                'V8 Arm': [],
                'V8 Arm - debug': [],
                'V8 Arm GC Stress': [],
                'V8 Linux - mipsel - sim': [],
                'V8 Mips - big endian - nosnap - 1': [],
                'V8 Mips - big endian - nosnap - 2': [],
                'V8 Linux - ppc - sim': [],
                'V8 Linux - ppc64 - sim': [],
                'V8 Linux - s390 - sim': [],
                'V8 Linux - s390x - sim': [],
                'V8 Linux - x87 - nosnap - debug builder': [],
                'V8 Linux - x87 - nosnap - debug': [],
            },
            sendToInterestedUsers=True,
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'mem_sheriff': v8_steps,
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                's390': ['runhooks', 'compile', 'Check'],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'x87': ['runhooks', 'compile', 'Check'],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
    ])
예제 #4
0
def Update(config, active_master, c):
    c['status'].extend([
        V8Notifier(
            config,
            active_master,
            categories_steps={'release': V8_STEPS},
            sendToInterestedUsers=True,
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={'mips': V8_STEPS},
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={'ppc': V8_STEPS},
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
    ])
def Update(config, active_master, c):
    c['status'].extend([
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'chromium': [
                    'update',
                    'runhooks',
                    'gn',
                    'compile',
                ],
            },
            sendToInterestedUsers=True,
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'clusterfuzz': [
                    'check clusterfuzz',
                    'runhooks',
                    'gn',
                    'compile',
                    'gsutil upload',
                ],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={'release': []},
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
        V8Notifier(
            config,
            active_master,
            categories_steps={
                'node': [
                    'configure node.js',
                    'build and test node.js',
                ],
            },
            extraRecipients=[
                '*****@*****.**',
                '*****@*****.**',
                '*****@*****.**',
            ],
        ),
    ])