forked from adoptium/ci-jenkins-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jdk16u.groovy
54 lines (51 loc) · 1.16 KB
/
jdk16u.groovy
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
targetConfigurations = [
"x64Mac" : [
"hotspot",
"openj9"
],
"x64Linux" : [
"hotspot",
"openj9"
],
"x64AlpineLinux" : [
"hotspot"
],
"x64Windows" : [
"hotspot",
"openj9"
],
"x32Windows" : [
"hotspot"
],
"ppc64Aix" : [
"hotspot",
"openj9"
],
"ppc64leLinux": [
"hotspot",
"openj9"
],
"s390xLinux" : [
"hotspot",
"openj9"
],
"aarch64Linux": [
"hotspot",
"openj9"
],
"arm32Linux" : [
"hotspot"
]
]
// 23:30 Mon, Wed, Fri
triggerSchedule_nightly="TZ=UTC\n30 23 * * 1,3,5"
// 04:30 Sun
triggerSchedule_weekly="TZ=UTC\n30 04 * * 7"
// scmReferences to use for weekly release build
weekly_release_scmReferences=[
"hotspot" : "",
"openj9" : "",
"corretto" : "",
"dragonwell" : ""
]
return this