Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-09-29 09:55:34 +0000
committerSravan Kumar Lakkimsetti2020-09-29 09:55:34 +0000
commit8e409834ac2a6b0ac0da97c5082a26fccf1793ba (patch)
tree1dc89737fceed9503ebc905be63103ce1281f468 /JenkinsJobs
parentfd4c41f9d70f3962976252c57de3a3a633eeb535 (diff)
downloadeclipse.platform.releng.aggregator-8e409834ac2a6b0ac0da97c5082a26fccf1793ba.tar.gz
eclipse.platform.releng.aggregator-8e409834ac2a6b0ac0da97c5082a26fccf1793ba.tar.xz
eclipse.platform.releng.aggregator-8e409834ac2a6b0ac0da97c5082a26fccf1793ba.zip
build failure in Y-builds
Change-Id: Id8a2959164026885dc826a5ff51d66b4e1c1a589 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'JenkinsJobs')
-rw-r--r--JenkinsJobs/Builds/Y-build.groovy16
1 files changed, 8 insertions, 8 deletions
diff --git a/JenkinsJobs/Builds/Y-build.groovy b/JenkinsJobs/Builds/Y-build.groovy
index 530438cf0..ae982bc91 100644
--- a/JenkinsJobs/Builds/Y-build.groovy
+++ b/JenkinsJobs/Builds/Y-build.groovy
@@ -1,8 +1,8 @@
pipeline {
options {
- timeout(time: 390, unit: 'MINUTES')
+ timeout(time: 360, unit: 'MINUTES')
timestamps()
- buildDiscarder(logRotator(numToKeepStr:'5'))
+ buildDiscarder(logRotator(numToKeepStr:'25'))
}
agent {
kubernetes {
@@ -15,14 +15,14 @@ spec:
containers:
- name: "jnlp"
image: "eclipsecbijenkins/jipp-migration-agent:4.3"
- imagePullPolicy: "IfNotPresent"
+ imagePullPolicy: "Always"
resources:
limits:
memory: "8192Mi"
- cpu: "2000m"
+ cpu: "4000m"
requests:
memory: "6144Mi"
- cpu: "1000m"
+ cpu: "2000m"
securityContext:
privileged: false
tty: true
@@ -169,7 +169,7 @@ spec:
steps {
container('jnlp') {
withEnv(["JAVA_HOME=${ tool 'openjdk-jdk11-latest' }"]) {
- withAnt(installation: 'apache-ant-latest') {
+ withAnt(installation: 'apache-ant-latest', jdk: 'openjdk-jdk11-latest') {
sh '''
cd ${WORKSPACE}/eclipse.platform.releng.aggregator/eclipse.platform.releng.aggregator/cje-production/mbscripts
./mb020_createBaseBuilder.sh $CJE_ROOT/buildproperties.shsource 2>&1 | tee $logDir/mb020_createBaseBuilder.sh.log
@@ -298,7 +298,7 @@ spec:
steps {
container('jnlp') {
withEnv(["JAVA_HOME=${ tool 'openjdk-jdk11-latest' }"]) {
- withAnt(installation: 'apache-ant-latest') {
+ withAnt(installation: 'apache-ant-latest', jdk: 'openjdk-jdk11-latest') {
sh '''
cd ${WORKSPACE}/eclipse.platform.releng.aggregator/eclipse.platform.releng.aggregator/cje-production/mbscripts
bash -x ./mb300_gatherEclipseParts.sh $CJE_ROOT/buildproperties.shsource 2>&1 | tee $logDir/mb300_gatherEclipseParts.sh.log
@@ -317,7 +317,7 @@ spec:
steps {
container('jnlp') {
withEnv(["JAVA_HOME=${ tool 'openjdk-jdk11-latest' }"]) {
- withAnt(installation: 'apache-ant-latest') {
+ withAnt(installation: 'apache-ant-latest', jdk: 'openjdk-jdk11-latest') {
sh '''
cd ${WORKSPACE}/eclipse.platform.releng.aggregator/eclipse.platform.releng.aggregator/cje-production/mbscripts
./mb310_gatherEquinoxParts.sh $CJE_ROOT/buildproperties.shsource 2>&1 | tee $logDir/mb310_gatherEquinoxParts.sh.log

Back to the top