Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-dev] The 4.24 IBuild is Inconsistent

My Tycho builds fails like this last night:

[ERROR] Cannot resolve target definition:
[ERROR]   Software being installed: org.eclipse.sdk.feature.group 4.24.0.v20220312-2252
[ERROR]   Missing requirement: org.eclipse.core.net.win32.x86_64 1.1.600.v20220312-1450 requires 'org.eclipse.equinox.p2.iu; org.eclipse.core.net.win32 0.0.0' but it could not be found
[ERROR]   Cannot satisfy dependency: org.eclipse.platform.feature.group 4.24.0.v20220312-1800 depends on: org.eclipse.equinox.p2.iu; org.eclipse.core.net.win32.x86_64 [1.1.600.v20220312-1450,1.1.600.v20220312-1450]
[ERROR]   Cannot satisfy dependency: org.eclipse.sdk.feature.group 4.24.0.v20220312-2252 depends on: org.eclipse.equinox.p2.iu; org.eclipse.platform.feature.group [4.24.0.v20220312-1800,4.24.0.v20220312-1800]

I think that's because this bug introduced a new bundle/fragment

https://bugs.eclipse.org/bugs/show_bug.cgi?id=578341

But that fragment is not included by /org.eclipse.platform-feature/feature.xml which needs this addition:

   <plugin
         id="org.eclipse.core.net.win32"
         download-size="0"
         install-size="0"
         version="0.0.0"
         fragment="true"
         unpack="false"/>

I think that's why org.eclipse.core.net.win32 is s not in the repository.

I'd normally contribute the fix to Gerrit, but that doesn't work for this migrated repository.  Is the new process for how to contribute documented somewhere?




Back to the top