Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ecf-dev] can't get to builder

Sure. It is quite easy if you know how.

when the build breaks it is normally caused by three reasons:

1. A dependency that can not be found
2. A repository that is not working
3. A compile problem

The first two are the most common. We use orbit bundles and we sometimes have a dependency on an S build (not sure what that means) but they come and go. We had to build one in recently because of a (1) problem. 

When the build breaks I go into the buckminster log and scan for "ERROR". Then I check what the problem could be:

ERROR   [0033] : No suitable provider for component org.apache.felix.gogo.shell:osgi.bundle/[0.8.0.v201110170705,0.8.0.v201110170705] was found in resourceMap file:/opt/hudson/jobs/C-HEAD-discovery.feature/workspace/ecf.rmap
  ERROR   [0033] : No suitable provider for component org.apache.felix.gogo.shell:osgi.bundle/[0.8.0.v201110170705,0.8.0.v201110170705] was found in searchPath default
    ERROR   [0033] : Rejecting provider p2(http://ftp.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/S20120519125550/repository/[http://ftp.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/S20120519125550/repository/]): No component match was found
      ERROR   No repository found at http://ftp.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/S20120519125550/repository/.
    ERROR   [0033] : Rejecting provider p2(http://ftp.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/R20120119162704/repository[http://ftp.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/R20120119162704/repository]): No component match was found
    ERROR   [0033] : Rejecting provider cvs(:pserver:anonymous@xxxxxxxxxxxxxxx:/cvsroot/tools,org.eclipse.orbit/org.eclipse.orbit.releng/maps): Score is below threshold


In this case there is a problem with a repository.

Then I investigate by FTP-ing to the url [1 - replace http by ftp] ]and any parent directories. This quickly made me realize that the orbit repo was gone. So I then replaced the one in the ecf.rmap (from the org.eclipse.bm project) with the latest R repository and restarted the build



Regards,

Wim

Back to the top