blob: 7a54ba059e54c734021bd1196a2e6477e76025a0 [file] [log] [blame]
Mike Marchetti9cfcbca2017-07-25 11:54:01 -04001#!/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#
18import requests
19import json
20import pprint
21import argparse
22
beierlmff4016f2020-06-30 13:36:26 -040023parser = argparse.ArgumentParser(description="Tool to retrieve the latest build from the artifactory server")
Mike Marchetti9cfcbca2017-07-25 11:54:01 -040024parser.add_argument('branch')
beierlmff4016f2020-06-30 13:36:26 -040025parser.add_argument('--project', default='osm-stage_3')
26parser.add_argument('--url', default='https://artifactory-osm.etsi.org/artifactory/api/build/')
Mike Marchetti9cfcbca2017-07-25 11:54:01 -040027args = parser.parse_args()
28
29url = args.url + args.project + " :: " + args.branch
30
31resp = requests.get(url)
32jsonData = json.loads(resp.content)
33
34if 'buildsNumbers' not in jsonData:
35 print("Cannot find any valid builds")
36 exit(1)
37
38# first entry is the latest build
beierlmff4016f2020-06-30 13:36:26 -040039build = sorted(jsonData['buildsNumbers'], key=lambda x: int(x['uri'][1:]), reverse=True)[0]
Mike Marchetti9cfcbca2017-07-25 11:54:01 -040040
beierlmff4016f2020-06-30 13:36:26 -040041print "{} :: {}{}".format(args.project, args.branch, build['uri'])