TeamCity: select latest patch version of go for mac builds (#2363)

Also adds a disabled tip builder for the next-version support branch.
This commit is contained in:
Alessandro Arzilli
2021-03-01 17:23:05 +01:00
committed by GitHub
parent 2e80b32c41
commit 5534839ff7
3 changed files with 25 additions and 5 deletions

11
_scripts/latestver.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python
import json
import urllib
import sys
ver = sys.argv[1]
d = json.loads(urllib.urlopen('https://golang.org/dl/?mode=json&include=all').read())
for x in d:
if x['version'][:len(ver)] == ver:
print x['version']
exit(0)