-
Notifications
You must be signed in to change notification settings - Fork 37
/
gen-go-build.py
executable file
·53 lines (44 loc) · 1.53 KB
/
gen-go-build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/python
# Helper for creating Go build.sh files. This script will create a default build.sh file
# for Go/macOS/Linux versions listed below, unless the directory already exists. If a custom
# build.sh script is needed, just create it and this helper will ignore it going forward.
import os
from textwrap import dedent
go_versions = [
'1.9.7',
'1.10.8',
'1.11.5',
'1.12',
]
mac_versions = {
'10.8': ['1.9.7', '1.10.8'],
'10.9': ['1.10.8'],
'10.10': ['1.10.8', '1.11.5', '1.12'],
'10.11': ['1.10.8', '1.11.5', '1.12'],
'10.12': ['1.10.8', '1.11.5', '1.12'],
'10.13': ['1.10.8', '1.11.5', '1.12'],
'10.14': ['1.10.8', '1.11.5', '1.12'],
}
tmpl = dedent("""\
#!/bin/bash
set -o xtrace
curl https://storage.googleapis.com/golang/go{go_version}.{arch}.tar.gz -o go.tar.gz
""")
def maybe_gen(dir, go_version, arch):
if not os.path.exists(dir):
os.makedirs(dir)
filename = os.path.join(dir, 'build.sh')
with open(filename, 'w') as fh:
fh.write(tmpl.format(go_version=go_version, arch=arch))
os.chmod(filename, 0755)
def mac():
for mac_version, mac_go_versions in mac_versions.items():
for go_version in mac_go_versions:
dir = 'build-support/bin/go/mac/%s/%s' % (mac_version, go_version)
maybe_gen(dir, go_version, 'darwin-amd64')
def x86_64():
for go_version in go_versions:
dir = 'build-support/bin/go/linux/x86_64/%s' % go_version
maybe_gen(dir, go_version, 'linux-amd64')
mac()
x86_64()