forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci.hocon
79 lines (70 loc) · 2.16 KB
/
ci.hocon
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
toolsCommon: {
setup : [
[cd, "./tools"]
]
timelimit : "30:00"
}
toolsGateLite : ${toolsCommon} {
run : [
["mx", "build" ],
["mx", "unittest", "--verbose" ]
["mx", "sigtest" ]
]
}
toolsCoverageWhitelisting: [
"--jacoco-whitelist-package",
"org.graalvm.tools",
"--jacoco-whitelist-package",
"com.oracle.truffle.tools"
]
toolsCoverageWeekly: {
"run": [
[
"mx"
] ${toolsCoverageWhitelisting} [
"--strict-compliance",
"gate",
"--strict-mode",
"--jacoco-omit-excluded",
"--jacocout",
"html"
],
["mx"] ${toolsCoverageWhitelisting} ["coverage-upload"]
],
targets: ["weekly"]
}
toolsWeekly: ${tools-weekly-notifications} {
targets: ["weekly"]
}
builds += [
${linux-amd64} ${oraclejdk8} ${toolsCommon} ${eclipse} ${jdt} {run : [["mx", "--strict-compliance", "gate", "--strict-mode"]], targets : [gate], name: "gate-tools-8"},
${linux-amd64} ${oraclejdk11} ${toolsCommon} ${eclipse} ${jdt} {run : [["mx", "--strict-compliance", "gate", "--strict-mode"]], targets : [gate], name: "gate-tools-oraclejdk-11"},
${linux-amd64} ${oraclejdk17} ${toolsCommon} ${eclipse} ${jdt} {run : [["mx", "--strict-compliance", "gate", "--strict-mode"]], targets : [gate], name: "gate-tools-oraclejdk-17"},
${linux-amd64} ${oraclejdk8} ${toolsCommon} {
run : [
["mx", "build"],
["mx", "javadoc"],
],
targets : [gate],
name: "gate-tools-javadoc"
},
${windows-amd64} ${oraclejdk8} ${toolsGateLite} ${devkits.windows-oraclejdk8} {
targets : [gate],
name: "gate-tools-windows-8"
},
${darwin-amd64} ${oraclejdk8} ${toolsGateLite} ${toolsWeekly} {
name: "gate-tools-mac-lite-8"
},
${darwin-amd64} ${oraclejdk11} ${toolsGateLite} ${toolsWeekly} {
name: "gate-tools-mac-lite-oraclejdk-11"
}
${darwin-amd64} ${oraclejdk17} ${toolsGateLite} ${toolsWeekly} {
name: "gate-tools-mac-lite-oraclejdk-17"
}
${linux-aarch64} ${labsjdk11} ${toolsGateLite} ${toolsWeekly} {
name: "gate-tools-linux-aarch64-lite-labsjdk-11"
},
${linux-amd64} ${oraclejdk8} ${toolsCommon} ${eclipse} ${jdt} ${toolsCoverageWeekly} {
name: "weekly-tools-coverage"
}
]