forked from adoptium/ci-jenkins-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjdk21u.groovy
63 lines (59 loc) · 1.24 KB
/
jdk21u.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
55
56
57
58
59
60
61
62
63
targetConfigurations = [
'x64Mac' : [
'openj9'
],
'x64Linux' : [
'openj9'
],
'x64Windows' : [
'openj9'
],
'ppc64Aix' : [
'openj9'
],
'ppc64leLinux': [
'openj9'
],
's390xLinux' : [
'openj9'
],
'aarch64Linux': [
'openj9'
],
'aarch64Mac': [
'openj9'
],
'x64MacIBM': [
'openj9'
],
'x64LinuxIBM': [
'openj9'
],
'x64WindowsIBM': [
'openj9'
],
'ppc64AixIBM': [
'openj9'
],
'ppc64leLinuxIBM': [
'openj9'
],
's390xLinuxIBM': [
'openj9'
],
'aarch64LinuxIBM': [
'openj9'
],
'aarch64MacIBM': [
'openj9'
]
]
// Weekly 7:30 pm Wed
triggerSchedule_nightly = '30 19 * * 1-4'
// 11:00 am Sat
triggerSchedule_weekly = '0 11 * * 6'
// scmReferences to use for weekly release build
weekly_release_scmReferences = [
'openj9' : ''
]
return this