mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.5 KiB
Python
95 lines
2.5 KiB
Python
8 years ago
|
#!/usr/bin/env python
|
||
|
# PYTHON_ARGCOMPLETE_OK
|
||
|
|
||
|
# (c) 2016 Red Hat, Inc.
|
||
|
#
|
||
|
# This file is part of Ansible
|
||
|
#
|
||
|
# Ansible is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# Ansible is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||
4 years ago
|
|
||
|
"""CLI tool for starting new CI runs."""
|
||
|
|
||
5 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
8 years ago
|
|
||
|
# noinspection PyCompatibility
|
||
|
import argparse
|
||
|
import json
|
||
|
import os
|
||
4 years ago
|
import sys
|
||
8 years ago
|
import requests
|
||
4 years ago
|
import requests.auth
|
||
8 years ago
|
|
||
|
try:
|
||
|
import argcomplete
|
||
|
except ImportError:
|
||
|
argcomplete = None
|
||
|
|
||
4 years ago
|
# TODO: Dev does not have a token for AZP, somebody please test this.
|
||
|
|
||
|
# Following changes should be made to improve the overall style:
|
||
|
# TODO use new style formatting method.
|
||
|
# TODO type hints.
|
||
|
|
||
8 years ago
|
|
||
|
def main():
|
||
|
"""Main program body."""
|
||
5 years ago
|
|
||
4 years ago
|
args = parse_args()
|
||
8 years ago
|
|
||
4 years ago
|
key = os.environ.get('AZP_TOKEN', None)
|
||
|
if not key:
|
||
|
sys.stderr.write("please set you AZP token in AZP_TOKEN")
|
||
|
sys.exit(1)
|
||
8 years ago
|
|
||
4 years ago
|
start_run(args, key)
|
||
8 years ago
|
|
||
|
|
||
4 years ago
|
def parse_args():
|
||
|
"""Parse and return args."""
|
||
8 years ago
|
|
||
4 years ago
|
parser = argparse.ArgumentParser(description='Start a new CI run.')
|
||
8 years ago
|
|
||
4 years ago
|
parser.add_argument('-p', '--pipeline-id', type=int, default=20, help='pipeline to download the job from')
|
||
|
parser.add_argument('--ref', help='git ref name to run on')
|
||
8 years ago
|
|
||
|
parser.add_argument('--env',
|
||
|
nargs=2,
|
||
|
metavar=('KEY', 'VALUE'),
|
||
|
action='append',
|
||
|
help='environment variable to pass')
|
||
|
|
||
|
if argcomplete:
|
||
|
argcomplete.autocomplete(parser)
|
||
|
|
||
|
args = parser.parse_args()
|
||
|
|
||
5 years ago
|
return args
|
||
|
|
||
|
|
||
4 years ago
|
def start_run(args, key):
|
||
|
"""Start a new CI run."""
|
||
8 years ago
|
|
||
4 years ago
|
url = "https://dev.azure.com/ansible/ansible/_apis/pipelines/%s/runs?api-version=6.0-preview.1" % args.pipeline_id
|
||
|
payload = {"resources": {"repositories": {"self": {"refName": args.ref}}}}
|
||
8 years ago
|
|
||
4 years ago
|
resp = requests.post(url, auth=requests.auth.HTTPBasicAuth('user', key), data=payload)
|
||
|
resp.raise_for_status()
|
||
8 years ago
|
|
||
4 years ago
|
print(json.dumps(resp.json(), indent=4, sort_keys=True))
|
||
8 years ago
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|