Run legal-auto on botmaster as well

Fixes #1959
This commit is contained in:
Stephan Kulow 2019-05-27 18:02:15 +02:00
parent a047587820
commit af78e4eb50
4 changed files with 66 additions and 10 deletions

View File

@ -42,6 +42,27 @@ pipelines:
- repo-checker3 - repo-checker3
tasks: tasks:
- script: ./repo_checker.py -A https://api.opensuse.org --debug review - script: ./repo_checker.py -A https://api.opensuse.org --debug review
openSUSE.Legal.Check:
group: openSUSE.Checkers
lock_behavior: unlockWhenFinished
timer:
spec: 0 */5 * ? * *
environment_variables:
OSC_CONFIG: /home/go/config/oscrc-legal-auto
materials:
git:
git: https://github.com/openSUSE/openSUSE-release-tools.git
stages:
- Run:
approval:
type: manual
jobs:
Run:
timeout: 0
resources:
- staging-bot3
tasks:
- script: ./legal-auto.py -A https://api.opensuse.org --debug --legaldb http://legaldb.suse.de review
Factory.Staging.Report: Factory.Staging.Report:
group: openSUSE.Checkers group: openSUSE.Checkers
lock_behavior: unlockWhenFinished lock_behavior: unlockWhenFinished

View File

@ -197,6 +197,27 @@ pipelines:
- staging-bot3 - staging-bot3
tasks: tasks:
- script: ./check_source.py -A https://api.suse.de --verbose --skip-add-reviews --group factory-auto review - script: ./check_source.py -A https://api.suse.de --verbose --skip-add-reviews --group factory-auto review
SLE.Legal.Check:
group: SLE.Checkers
lock_behavior: unlockWhenFinished
timer:
spec: 0 */5 * ? * *
environment_variables:
OSC_CONFIG: /home/go/config/oscrc-legal-auto
materials:
git:
git: https://github.com/openSUSE/openSUSE-release-tools.git
stages:
- Run:
approval:
type: manual
jobs:
Run:
timeout: 0
resources:
- staging-bot3
tasks:
- script: ./legal-auto.py -A https://api.suse.de --debug --legaldb http://legaldb.suse.de review
SLE12.SP5.InstallCheck.A: SLE12.SP5.InstallCheck.A:
group: SLE.Checkers group: SLE.Checkers
lock_behavior: unlockWhenFinished lock_behavior: unlockWhenFinished

View File

@ -197,6 +197,27 @@ pipelines:
- staging-bot3 - staging-bot3
tasks: tasks:
- script: ./check_source.py -A https://api.suse.de --verbose --skip-add-reviews --group factory-auto review - script: ./check_source.py -A https://api.suse.de --verbose --skip-add-reviews --group factory-auto review
SLE.Legal.Check:
group: SLE.Checkers
lock_behavior: unlockWhenFinished
timer:
spec: 0 */5 * ? * *
environment_variables:
OSC_CONFIG: /home/go/config/oscrc-legal-auto
materials:
git:
git: https://github.com/openSUSE/openSUSE-release-tools.git
stages:
- Run:
approval:
type: manual
jobs:
Run:
timeout: 0
resources:
- staging-bot3
tasks:
- script: ./legal-auto.py -A https://api.suse.de --debug --legaldb http://legaldb.suse.de review
<% %w(A B C D H S V Y).each do |letter| -%> <% %w(A B C D H S V Y).each do |letter| -%>
SLE12.SP5.InstallCheck.<%= letter %>: SLE12.SP5.InstallCheck.<%= letter %>:
group: SLE.Checkers group: SLE.Checkers

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python3
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
@ -13,11 +13,7 @@ import requests as REQ
import json import json
import time import time
try: from urllib.error import HTTPError
from urllib.error import HTTPError
except ImportError:
# python 2.x
from urllib2 import HTTPError
try: try:
from xml.etree import cElementTree as ET from xml.etree import cElementTree as ET
@ -307,8 +303,6 @@ class CommandLineInterface(ReviewBot.CommandLineInterface):
parser.add_option("--legaldb", dest='legaldb', metavar='URL', parser.add_option("--legaldb", dest='legaldb', metavar='URL',
default='http://legaldb.suse.de', help="Use different legaldb deployment") default='http://legaldb.suse.de', help="Use different legaldb deployment")
parser.add_option("--token", dest='token', metavar='STRING',
default=False, help="Use token to authenticate")
return parser return parser
def do_project(self, subcmd, opts, *projects): def do_project(self, subcmd, opts, *projects):
@ -322,8 +316,7 @@ class CommandLineInterface(ReviewBot.CommandLineInterface):
self.options.group = 'legal-auto' self.options.group = 'legal-auto'
bot = ReviewBot.CommandLineInterface.setup_checker(self) bot = ReviewBot.CommandLineInterface.setup_checker(self)
bot.legaldb = self.options.legaldb bot.legaldb = self.options.legaldb
if self.options.token: bot.legaldb_headers['Authorization'] = 'Token ' + osc.conf.config['legaldb_token']
bot.legaldb_headers['Authorization'] = 'Token ' + self.options.token
return bot return bot