Skip to content

Commit 13d2ebc

Browse files
committed
[RelEng] Ignore misaligned version of org.eclipse.sdk.tests feature
The version of the org.eclipse.sdk.tests feature was increased twice in this release cycle and therefore isn't properly updated in the release preparation anymore. To unbreak the release preparation it's misaligned version is temporarily ignored/accepted. Caused by - #3399
1 parent d956df8 commit 13d2ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JenkinsJobs/Releng/prepareNextDevCycle.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ pipeline {
306306
--include \\*.sh \
307307
--fixed-strings "${PREVIOUS_RELEASE_VERSION}")
308308
# The eclipse-platform-parent/pom.xml contains the previous version in the baseline repository variable
309-
if [[ -z "${matchingFiles}" ]] || [[ "${matchingFiles}" == 'eclipse-platform-parent/pom.xml' ]]; then
309+
if [[ -z "${matchingFiles}" ]] || [[ "$(echo $matchingFiles)" == 'eclipse-platform-parent/pom.xml eclipse.platform.releng/features/org.eclipse.sdk.tests/feature.xml' ]]; then
310310
echo "No unexpected references to previous version ${PREVIOUS_RELEASE_VERSION} found."
311311
exit 0
312312
else

0 commit comments

Comments
 (0)