forked from dhuebner/xtext-apidiff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
create-api-diff.sh
executable file
·141 lines (119 loc) · 5.19 KB
/
create-api-diff.sh
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/bash
# Use the build container for testing to avoid OS specific interpretation:
# docker run -it -v $(pwd):/xtext -w /xtext eclipsecbi/jiro-agent-centos-8 bash
declare -A VERSION_2_BUILDID
VERSION_2_BUILDID["2.37.0"]=""
VERSION_2_BUILDID["2.36.0"]=""
VERSION_2_BUILDID["2.35.0"]=""
VERSION_2_BUILDID["2.34.0"]=""
VERSION_2_BUILDID["2.33.0"]=""
VERSION_2_BUILDID["2.32.0"]=""
VERSION_2_BUILDID["2.31.0"]=""
VERSION_2_BUILDID["2.30.0"]="R202302271344"
VERSION_2_BUILDID["2.29.0"]="R202211211054"
VERSION_2_BUILDID["2.28.0"]="R202208290555"
VERSION_2_BUILDID["2.27.0"]="R202205300508"
VERSION_2_BUILDID["2.26.0"]="R202202280901"
VERSION_2_BUILDID["2.25.0"]="R202103011429"
VERSION_2_BUILDID["2.24.0"]="R202011301016"
VERSIONS=(2.37.0 2.36.0 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 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\
R202211211054\
R202208290555\
R202205300508\
R202202280901\
R202103011429\
R202011301016)
if [ -z "$DEV_VERSION" ]; then
echo "Using fallback to retrieve DEV_VERSION"
DEV_VERSION=$(curl -sS https://raw.githubusercontent.com/eclipse/xtext/main/pom.xml|grep -Po "([0-9]+\.[0-9]+\.[0-9]+)-SNAPSHOT" |sed 's/-SNAPSHOT//')
fi
# The Eclipse release to use
# https://download.eclipse.org/eclipse/downloads/drops4/R-4.31-202402290520/download.php?dropFile=eclipse-SDK-4.31-linux-gtk-x86_64.tar.gz
ECLIPSE_RELEASE=2024-03
ECLIPSE_TARGZ_FILE=eclipse-SDK-4.31-linux-gtk-x86_64.tar.gz
ECLIPSE_TARGZ_DOWNLOAD_URL=https://download.eclipse.org/eclipse/downloads/drops4/R-4.31-202402290520/$ECLIPSE_TARGZ_FILE
ECLIPSE_XTEXT_VERSION=${VERSIONS[0]}
if [ -z "$NEW_VERSION" ]; then
# if not set in environment use default
NEW_VERSION=$DEV_VERSION
fi
if [ -z "$OLD_VERSION" ]; then
# if not set in environment use default
OLD_VERSION=${VERSIONS[0]}
fi
echo "Diffing $NEW_VERSION against $OLD_VERSION"
echo ""
echo "Current Xtext dev version is $DEV_VERSION"
if [ ! -d eclipse ]; then
echo "Downloading Eclipse"
# Get basic Eclipse SDK
curl -m 1200 -sL $ECLIPSE_TARGZ_DOWNLOAD_URL --output $ECLIPSE_TARGZ_FILE && tar -zxf $ECLIPSE_TARGZ_FILE
rm $ECLIPSE_TARGZ_FILE
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.20.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.23.1/,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.20.0,https://download.eclipse.org/releases/$ECLIPSE_RELEASE,https://download.eclipse.org/lsp4j/updates/releases/0.23.1/,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.draw2d \
-destination eclipse
fi
download () {
XTEXT_VERSION=$1
DOWNLOAD_URL=$2
ZIP_FILE=tmf-xtext-Update-$XTEXT_VERSION.zip
if [ ! -d tmf-xtext-Update-$XTEXT_VERSION ]; then
echo "Downloading Xtext $XTEXT_VERSION from $DOWNLOAD_URL"
# check existence of file
if [ $(curl -sS -I -o /dev/null -w '%{http_code}' $DOWNLOAD_URL) == 404 ]; then
echo "Not found: $DOWNLOAD_URL"
exit 1
fi
curl -m 1200 -sL $DOWNLOAD_URL --output $ZIP_FILE
unzip -q $ZIP_FILE -d tmf-xtext-Update-$XTEXT_VERSION
rm $ZIP_FILE
fi
}
# Download latest Xtext build
if [ -d tmf-xtext-Update-$DEV_VERSION ]; then
rm -r tmf-xtext-Update-$DEV_VERSION
fi
DOWNLOAD_URL=https://ci.eclipse.org/xtext/job/xtext/job/main/lastStableBuild/artifact/build/org.eclipse.xtext.p2repository-$DEV_VERSION-SNAPSHOT.zip
download $DEV_VERSION $DOWNLOAD_URL
# download NEW_VERSION and OLD_VERSION if not present
for ((idx=0; idx<${#BUILD_IDS[@]}; ++idx)); do
VERSION=${VERSIONS[idx]}
BUILD_ID=${BUILD_IDS[idx]}
# only download relevant versions
if [ $VERSION == $NEW_VERSION ] || [ $VERSION == $OLD_VERSION ]; then
if [ -z "$BUILD_ID" ];
then
download $VERSION "https://download.eclipse.org/modeling/tmf/xtext/downloads/drops/$VERSION/$BUILD_ID/tmf-xtext-Update-$VERSION.zip"
else
download $VERSION "https://download.eclipse.org/modeling/tmf/xtext/downloads/drops/$VERSION/tmf-xtext-Update-$VERSION.zip"
fi
fi
done
echo ""
echo "Creating the actual diff"
# update apicmp.properties
{
echo "old.version=${OLD_VERSION}"
echo "new.version=${NEW_VERSION}"
echo "old.location=tmf-xtext-Update-${OLD_VERSION}/plugins/"
echo "new.location=tmf-xtext-Update-${NEW_VERSION}/plugins/"
echo "cpLocation=eclipse/plugins"
} > japicmp.properties
echo "using japicmp.properties"
cat japicmp.properties
echo ""
echo "calling java -Xmx2G -jar japicmp-ext.jar"
rm -rf output
java -Xmx2G -jar japicmp-ext.jar