forked from ibmruntimes/ci-jenkins-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jdk8u.groovy
38 lines (35 loc) · 782 Bytes
/
jdk8u.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
targetConfigurations = [
'x64Mac' : [
'openj9'
],
'x64Linux' : [
'openj9'
],
'x32Windows' : [
'openj9'
],
'x64Windows' : [
'openj9'
],
'ppc64Aix' : [
'openj9'
],
'ppc64leLinux' : [
'openj9'
],
's390xLinux' : [
'openj9'
],
'aarch64Linux' : [
'openj9'
]
]
// Weeknights at 10:30pm
triggerSchedule_nightly='30 18 * * 1-4'
// H9:00am Sat
triggerSchedule_weekly='30 22 * * 5'
// scmReferences to use for weekly release build
weekly_release_scmReferences=[
'openj9' : ''
]
return this