| Mike Marchetti | 9cfcbca | 2017-07-25 11:54:01 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright 2017 Sandvine |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # |
| 18 | import requests |
| 19 | import json |
| 20 | import pprint |
| 21 | import argparse |
| 22 | |
| beierlm | ff4016f | 2020-06-30 13:36:26 -0400 | [diff] [blame] | 23 | parser = argparse.ArgumentParser(description="Tool to retrieve the latest build from the artifactory server") |
| Mike Marchetti | 9cfcbca | 2017-07-25 11:54:01 -0400 | [diff] [blame] | 24 | parser.add_argument('branch') |
| beierlm | ff4016f | 2020-06-30 13:36:26 -0400 | [diff] [blame] | 25 | parser.add_argument('--project', default='osm-stage_3') |
| 26 | parser.add_argument('--url', default='https://artifactory-osm.etsi.org/artifactory/api/build/') |
| Mike Marchetti | 9cfcbca | 2017-07-25 11:54:01 -0400 | [diff] [blame] | 27 | args = parser.parse_args() |
| 28 | |
| 29 | url = args.url + args.project + " :: " + args.branch |
| 30 | |
| 31 | resp = requests.get(url) |
| 32 | jsonData = json.loads(resp.content) |
| 33 | |
| 34 | if 'buildsNumbers' not in jsonData: |
| 35 | print("Cannot find any valid builds") |
| 36 | exit(1) |
| 37 | |
| 38 | # first entry is the latest build |
| beierlm | ff4016f | 2020-06-30 13:36:26 -0400 | [diff] [blame] | 39 | build = sorted(jsonData['buildsNumbers'], key=lambda x: int(x['uri'][1:]), reverse=True)[0] |
| Mike Marchetti | 9cfcbca | 2017-07-25 11:54:01 -0400 | [diff] [blame] | 40 | |
| beierlm | ff4016f | 2020-06-30 13:36:26 -0400 | [diff] [blame] | 41 | print "{} :: {}{}".format(args.project, args.branch, build['uri']) |