blob: de4dcdffaa6800fa652a757aa540f0d6982f33f6 [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
23parser=argparse.ArgumentParser(description="Tool to retrieve the latest build from the artifactory server")
24parser.add_argument('branch')
25parser.add_argument('--project',default='osm-stage_3')
26parser.add_argument('--url',default='http://osm1.etsi.org:8081/artifactory/api/build/')
27args = 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
39build = sorted(jsonData['buildsNumbers'], key=lambda x: int(x['uri'][1:]),reverse=True)[0]
40
41print "{} :: {}{}".format(args.project,args.branch,build['uri'])