forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci.hocon
34 lines (31 loc) · 1.01 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
regexCommon: {
setup : [
[cd, "./regex"]
]
timelimit : "30:00"
}
gateLite : ${regexCommon} {
run : [
["mx", "build" ],
["mx", "unittest", "--verbose", "com.oracle.truffle.regex" ]
]
}
regexWeekly: ${regex-weekly-notifications} {
targets: [ weekly ]
}
builds += [
${linux-amd64} ${labsjdk8} ${regexCommon} ${eclipse} ${jdt} {run : [["mx", "--strict-compliance", "gate", "--strict-mode"]], targets : [gate], name: "gate-regex-8"},
${linux-amd64} ${oraclejdk11} ${regexCommon} ${eclipse} {run : [["mx", "--strict-compliance", "gate", "--strict-mode"]], targets : [gate], name: "gate-regex-11"},
${solaris-sparcv9} ${labsjdk8} ${gateLite} ${regexWeekly} {
name: "gate-regex-solaris-lite-8"
}
${solaris-sparcv9} ${oraclejdk11} ${gateLite} ${regexWeekly} {
name: "gate-regex-solaris-lite-11"
}
${darwin-amd64} ${labsjdk8} ${gateLite} ${regexWeekly} {
name: "gate-regex-mac-lite-8"
}
${darwin-amd64} ${oraclejdk11} ${gateLite} ${regexWeekly} {
name: "gate-regex-mac-lite-11"
}
]