-
Notifications
You must be signed in to change notification settings - Fork 4
/
configurations-cronjob.toml
56 lines (48 loc) · 1.15 KB
/
configurations-cronjob.toml
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
54
55
56
[[Configurations]]
Name = "Base"
Root = "$ROOT/${BASE}"
AfterBuild = [ "benchsize", "benchdwarf" ]
[[Configurations]]
Name = "Tip"
Root = "$ROOT/go-tip/"
AfterBuild = [ "benchsize", "benchdwarf" ]
[[Configurations]]
Name = "Base-prof"
Root = "$ROOT/${BASE}"
RunWrapper = ["cpuprofile"]
Disabled = true
[[Configurations]]
Name = "Tip-prof"
Root = "$ROOT/go-tip/"
RunWrapper = ["cpuprofile"]
Disabled = true
[[Configurations]]
Name = "Tip-prof-nopreempt"
Root = "$ROOT/go-tip/"
RunWrapper = ["cpuprofile"]
RunEnv = ["GODEBUG=asyncpreemptoff=1"]
Disabled = true
[[Configurations]]
Name = "BaseNl"
GcFlags = "-N -l"
Root = "$ROOT/${BASE}"
AfterBuild = [ "benchsize", "benchdwarf" ]
Disabled = true
[[Configurations]]
Name = "TipNl"
GcFlags = "-N -l"
Root = "$ROOT/go-tip/"
AfterBuild = [ "benchsize", "benchdwarf" ]
Disabled = true
[[Configurations]]
Name = "Basel"
GcFlags = "-l"
Root = "$ROOT/${BASE}"
AfterBuild = [ "benchsize", "benchdwarf" ]
Disabled = true
[[Configurations]]
Name = "Tipl"
GcFlags = "-l"
Root = "$ROOT/go-tip/"
AfterBuild = [ "benchsize", "benchdwarf" ]
Disabled = true