Skip to content

Commit d393f88

Browse files
committed
Remove unused apifreeze releng scripts
Not used in years and just complicate the scripts and stream opening procedures.
1 parent 0a600be commit d393f88

File tree

6 files changed

+2
-100
lines changed

6 files changed

+2
-100
lines changed

cje-production/P-build/buildproperties.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ LOCAL_REPO="localMavenRepo"
4141
# Base builder parameters
4242
BASEBUILDER_TAG="4.31"
4343
API_PREV_REF_LABEL="4.31"
44-
#API_FREEZE_REF_LABEL="4.33RC1"
45-
API_FREEZE_REF_LABEL=""
46-
# Change to appropriate versions and uncomment when entering API freeze
47-
#FREEZE_PARAMS="-DfreezeBaseURL=https://${DOWNLOAD_HOST}/eclipse/downloads/drops4/S-${API_FREEZE_REF_LABEL}-202208241800/eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip -DfreezeName=Eclipse-SDK-${API_FREEZE_REF_LABEL} -DfreezeFilename=eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip"
48-
# Otherwise set to a blank space
49-
FREEZE_PARAMS=" "
5044

5145
PREVIOUS_RELEASE_VER="4.33"
5246
PREVIOUS_RELEASE_REPO_ID="4.33"

cje-production/Y-build/buildproperties.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ LOCAL_REPO="localMavenRepo"
4040
# Base builder parameters
4141
BASEBUILDER_TAG="4.32"
4242
API_PREV_REF_LABEL="4.32"
43-
#API_FREEZE_REF_LABEL="4.33RC1"
44-
API_FREEZE_REF_LABEL=""
45-
# Change to appropriate versions and uncomment when entering API freeze
46-
#FREEZE_PARAMS="-DfreezeBaseURL=https://${DOWNLOAD_HOST}/eclipse/downloads/drops4/S-${API_FREEZE_REF_LABEL}-202108251800/eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip -DfreezeName=Eclipse-SDK-${API_FREEZE_REF_LABEL} -DfreezeFilename=eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip"
47-
# Otherwise set to a blank space
48-
FREEZE_PARAMS=" "
4943

5044
PREVIOUS_RELEASE_VER="4.33"
5145
PREVIOUS_RELEASE_REPO_ID="4.33"

cje-production/buildproperties.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ LOCAL_REPO="localMavenRepo"
4040
# Base builder parameters
4141
BASEBUILDER_TAG="4.33"
4242
API_PREV_REF_LABEL="4.33"
43-
#API_FREEZE_REF_LABEL="4.33RC1"
44-
API_FREEZE_REF_LABEL=""
45-
# Change to appropriate versions and uncomment when entering API freeze
46-
#FREEZE_PARAMS="-DfreezeBaseURL=https://${DOWNLOAD_HOST}/eclipse/downloads/drops4/S-${API_FREEZE_REF_LABEL}-202208241800/eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip -DfreezeName=Eclipse-SDK-${API_FREEZE_REF_LABEL} -DfreezeFilename=eclipse-SDK-${API_FREEZE_REF_LABEL}-win32-x86_64.zip"
47-
# Otherwise set to a blank space
48-
FREEZE_PARAMS=" "
4943

5044
PREVIOUS_RELEASE_VER="4.33"
5145
PREVIOUS_RELEASE_REPO_ID="4.33"

eclipse.platform.releng.tychoeclipsebuilder/eclipse/apiexclude/exclude_list.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

eclipse.platform.releng.tychoeclipsebuilder/eclipse/buildScripts/api-tools-builder.xml

Lines changed: 2 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@
2929
name="API Tools builder integration"
3030
default="apiToolsReports">
3131

32-
33-
3432
<!--
35-
The default target that calls apitooling.apifreeze, apitooling.analysis and apitooling.apideprecation
33+
The default target that calls apitooling.analysis and apitooling.apideprecation
3634
and their respective _reportconversion tasks
3735
-->
3836
<target
@@ -45,14 +43,6 @@
4543
name="report"
4644
value="${buildDirectory}/apitools" />
4745
<mkdir dir="${report}" />
48-
<property
49-
name="freeze_report"
50-
value="${report}/freeze_report.xml" />
51-
<touch file="${freeze_report}" />
52-
<property
53-
name="freeze_html"
54-
value="${report}/freeze_report.html" />
55-
5646

5747

5848
<!-- we would have to fetch the baseline we wanted, or perhaps just link to its location -->
@@ -61,9 +51,6 @@
6151
value="${reference}/${previousBaselineFilename}" />
6252

6353
<!-- create properties for the filters -->
64-
<property
65-
name="exclude_list_location"
66-
value="${EBuilderDir}/eclipse/apiexclude/exclude_list.txt" />
6754
<property
6855
name="exclude_list_external_location"
6956
value="${EBuilderDir}/eclipse/apiexclude/exclude_list_external.txt" />
@@ -139,8 +126,7 @@
139126

140127
<target
141128
name="init"
142-
unless="apitoolinginitialized"
143-
depends="getfreezereference">
129+
unless="apitoolinginitialized">
144130

145131
<!-- The name for the build - i.e. I20130603-2000 -->
146132
<fail
@@ -210,49 +196,4 @@
210196
property="currentZipAvailable" />
211197
</target>
212198

213-
<!-- there will not always be a freeze report, only after M6 -->
214-
<target
215-
name="getfreezereference"
216-
if="freezeFilename">
217-
<fail
218-
unless="freezeBaseURL"
219-
message="full URL of freeze build must be provided, if freezeFilename is." />
220-
221-
<!-- if not provided, assume freezeName is same as freezeFilename -->
222-
<property
223-
name="freezeName"
224-
value="freezeFilename" />
225-
226-
<property
227-
name="freezereference"
228-
value="${buildDirectory}/apitoolingreference/${freezeName}" />
229-
<mkdir dir="${freezereference}" />
230-
231-
<get
232-
dest="${freezereference}"
233-
src="${freezeBaseURL}" />
234-
<!-- no need to unzip?
235-
<unzip
236-
src="${freezereference}/${freezeFilename}"
237-
dest="${freezereference}" />
238-
-->
239-
240-
</target>
241-
242-
<!-- there will not always be a freeze report, only after M6 -->
243-
<target
244-
name="dofreezeReport"
245-
if="freezereference">
246-
<!-- run the freeze task -->
247-
<apitooling.apifreeze
248-
baseline="${freezereference}/${freezeFilename}"
249-
profile="${current_location}"
250-
report="${freeze_report}"
251-
excludelist="${exclude_list_location}"
252-
debug="true" />
253-
<apitooling.apifreeze_reportconversion
254-
xmlfile="${freeze_report}"
255-
htmlfile="${freeze_html}"
256-
debug="true" />
257-
</target>
258199
</project>

eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,6 @@
9595
}
9696
?>
9797

98-
<?php
99-
// have removed coverage measurements for now
100-
// echo " <li><a href=\"coverage.php\"><b>JaCoCo code coverage report</b></a></li>";
101-
?>
102-
103-
<?php
104-
$freezeFilename="apitools/freeze_report.html";
105-
if (file_exists($freezeFilename)) {
106-
echo "<li><a href=\"$freezeFilename\"><b>API Tools Post-API Freeze Report</b></a>&nbsp;&nbsp;";
107-
echo "This report describes API changes since ${API_FREEZE_REF_LABEL}. Exclusions are listed in <a href=\"https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/blob/$BRANCH/eclipse.platform.releng.tychoeclipsebuilder/eclipse/apiexclude/exclude_list.txt\">.../apiexclude/exclude_list.txt</a>.</li>";
108-
}
109-
else {
110-
echo " <li>No freeze report. Only generated in main stream after RC1.</li>";
111-
}
112-
?>
113-
11498
<?php
11599
echo " <li><a href=\"apitools/apifilters-$BUILD_ID.zip\"><b>Zip of .api_filters files used in the build</b></a></li>";
116100
?>

0 commit comments

Comments
 (0)