forked from dotnet/performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_props.py
20 lines (17 loc) · 871 Bytes
/
parse_props.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import xml.etree.ElementTree as ET
import os
import argparse
parser = argparse.ArgumentParser(description='Get the branch name.')
parser.add_argument('--branch-name', type=str, dest='branch',
help='Name of the branch we are running')
args = parser.parse_args()
if not args.branch == "main":
print("##vso[task.setvariable variable=DotnetVersion;isSecret=false;isOutput=false]")
else:
if not os.path.exists('eng/Versions.props'):
raise FileNotFoundError("Versions.props does not exist")
tree = ET.parse('eng/Versions.props')
root = tree.getroot().find("PropertyGroup/MicrosoftDotnetSdkInternalPackageVersion")
if root == None:
raise ValueError("Structure of Versions.props has changed")
print("##vso[task.setvariable variable=DotnetVersion;isSecret=false;isOutput=false]--dotnet-versions {}".format(root.text))