Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-09-28 10:25:50 +0000
committerAlexander Kurtakov2020-09-28 10:25:50 +0000
commit66902f4b1eda6c5489c438b5ef690d5b78efd512 (patch)
treeaa2e3fd90b5b55ed39ba10b72e1c5fd3b2b283e0
parentc91467037d8fe21276c65141a83425fae5893911 (diff)
downloadeclipse.platform.releng.aggregator-66902f4b1eda6c5489c438b5ef690d5b78efd512.tar.gz
eclipse.platform.releng.aggregator-66902f4b1eda6c5489c438b5ef690d5b78efd512.tar.xz
eclipse.platform.releng.aggregator-66902f4b1eda6c5489c438b5ef690d5b78efd512.zip
Bug 567406 - [16] Start creating Y builds from BETA_JAVA16
Stop creating source tarballs. Doesn't make sense for Y-builds. Change-Id: I75c8c4f400e0a092395ef439a3f6c17af291af66 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--JenkinsJobs/Builds/Y-build.groovy19
1 files changed, 0 insertions, 19 deletions
diff --git a/JenkinsJobs/Builds/Y-build.groovy b/JenkinsJobs/Builds/Y-build.groovy
index bbed60234..530438cf0 100644
--- a/JenkinsJobs/Builds/Y-build.groovy
+++ b/JenkinsJobs/Builds/Y-build.groovy
@@ -254,25 +254,6 @@ spec:
}
}
}
- stage('Create Source Bundles'){
- steps {
- container('jnlp') {
- withEnv(["JAVA_HOME=${ tool 'openjdk-jdk11-latest' }"]) {
- sh '''
- cd ${WORKSPACE}/eclipse.platform.releng.aggregator/eclipse.platform.releng.aggregator/cje-production/mbscripts
- unset JAVA_TOOL_OPTIONS
- unset _JAVA_OPTIONS
- ./mb200_createSourceBundles.sh $CJE_ROOT/buildproperties.shsource 2>&1 | tee $logDir/mb200_createSourceBundles.sh.log
- if [[ ${PIPESTATUS[0]} -ne 0 ]]
- then
- echo "Failed in Create Source Bundles stage"
- exit 1
- fi
- '''
- }
- }
- }
- }
stage('Update Pom files in the source'){
steps {
container('jnlp') {

Back to the top