Limit Shippable matrix check to ansible repo.

This commit is contained in:
Matt Clay 2019-10-01 08:58:03 -07:00
parent f102705c95
commit ada02f1966

View file

@ -25,6 +25,13 @@ except ImportError:
def main(): # type: () -> None
"""Main entry point."""
repo_full_name = os.environ['REPO_FULL_NAME']
required_repo_full_name = 'ansible/ansible'
if repo_full_name != required_repo_full_name:
sys.stderr.write('Skipping matrix check on repo "%s" which is not "%s".\n' % (repo_full_name, required_repo_full_name))
return
with open('shippable.yml', 'rb') as yaml_file:
yaml = yaml_file.read().decode('utf-8').splitlines()