Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare 2.35 #45

Merged
merged 1 commit into from Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -26,8 +26,8 @@ pipeline {
}

parameters {
choice(name: 'OLD_VERSION', choices: ['2.33.0', '2.32.0', '2.31.0', '2.30.0', '2.29.0', '2.28.0', '2.27.0', '2.26.0', '2.25.0', '2.24.0'], description: 'Old Version')
choice(name: 'NEW_VERSION', choices: ['2.34.0', '2.33.0', '2.32.0', '2.31.0', '2.30.0', '2.29.0', '2.28.0', '2.27.0', '2.26.0', '2.25.0', '2.24.0'], description: 'New Version')
choice(name: 'OLD_VERSION', choices: ['2.34.0', '2.33.0', '2.32.0', '2.31.0', '2.30.0', '2.29.0', '2.28.0', '2.27.0', '2.26.0', '2.25.0', '2.24.0'], description: 'Old Version')
choice(name: 'NEW_VERSION', choices: ['2.35.0', '2.34.0', '2.33.0', '2.32.0', '2.31.0', '2.30.0', '2.29.0', '2.28.0', '2.27.0', '2.26.0', '2.25.0', '2.24.0'], description: 'New Version')
}

stages {
Expand Down
8 changes: 5 additions & 3 deletions create-api-diff.sh
Expand Up @@ -3,6 +3,7 @@
# docker run -it -v $(pwd):/xtext -w /xtext eclipsecbi/jiro-agent-centos-8 bash

declare -A VERSION_2_BUILDID
VERSION_2_BUILDID["2.34.0"]=""
VERSION_2_BUILDID["2.33.0"]=""
VERSION_2_BUILDID["2.32.0"]=""
VERSION_2_BUILDID["2.31.0"]=""
Expand All @@ -14,8 +15,9 @@ VERSION_2_BUILDID["2.26.0"]="R202202280901"
VERSION_2_BUILDID["2.25.0"]="R202103011429"
VERSION_2_BUILDID["2.24.0"]="R202011301016"

VERSIONS=(2.33.0 2.32.0 2.31.0 2.30.0 2.29.0 2.28.0 2.27.0 2.26.0 2.25.0 2.24.0 2.23.0 2.22.0 2.21.0 2.20.0 2.19.0 2.18.0 2.17.1 2.7.0)
VERSIONS=(2.34.0 2.33.0 2.32.0 2.31.0 2.30.0 2.29.0 2.28.0 2.27.0 2.26.0 2.25.0 2.24.0 2.23.0 2.22.0 2.21.0 2.20.0 2.19.0 2.18.0 2.17.1 2.7.0)
BUILD_IDS=(""\
""\
""\
""\
R202302271344\
Expand Down Expand Up @@ -63,8 +65,8 @@ if [ ! -d eclipse ]; then
echo "Installing additional features: Xtext and dependent"
eclipse/eclipse -data eclipse/.director-ws -consolelog -noSplash -clean \
-application org.eclipse.equinox.p2.director \
-metadataRepository https://download.eclipse.org/modeling/tmf/xtext/updates/releases/$ECLIPSE_XTEXT_VERSION,https://download.eclipse.org/modeling/emft/mwe/updates/releases/2.16.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.21.0/,https://download.eclipse.org/tools/orbit/downloads/$ECLIPSE_RELEASE \
-artifactRepository https://download.eclipse.org/modeling/tmf/xtext/updates/releases/$ECLIPSE_XTEXT_VERSION,https://download.eclipse.org/modeling/emft/mwe/updates/releases/2.16.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.21.0/,https://download.eclipse.org/tools/orbit/downloads/$ECLIPSE_RELEASE \
-metadataRepository https://download.eclipse.org/modeling/tmf/xtext/updates/releases/$ECLIPSE_XTEXT_VERSION,https://download.eclipse.org/modeling/emft/mwe/updates/releases/2.17.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.22.0/,https://download.eclipse.org/tools/orbit/downloads/$ECLIPSE_RELEASE \
-artifactRepository https://download.eclipse.org/modeling/tmf/xtext/updates/releases/$ECLIPSE_XTEXT_VERSION,https://download.eclipse.org/modeling/emft/mwe/updates/releases/2.17.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.22.0/,https://download.eclipse.org/tools/orbit/downloads/$ECLIPSE_RELEASE \
-installIU org.eclipse.xtext.sdk.feature.group,org.eclipse.lsp4j.sdk.feature.group,org.eclipse.m2e.core,org.eclipse.buildship.core,org.kohsuke.args4j,org.eclipse.xpand,org.eclipse.xtend,org.eclipse.xtend.typesystem.emf,org.eclipse.draw2d \
-destination eclipse
fi
Expand Down