Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] Git Fetch Factory

It doesn't look like your fetch factory is successfully installed in your
base builder.

On Thu, May 19, 2011 at 3:02 PM, Andrew Gvozdev <angvoz.dev@xxxxxxxxx>wrote:

> ! The master
> feature@xxxxxxxxxxxxxxx.master=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/releng/org.eclipse.cdt.master
>
> ! Cross platform
> plugin@xxxxxxxxxxxxxxxxxxxx=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/all/org.eclipse.cdt.core
> plugin@xxxxxxxxxxxxxxxxxx=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/all/org.eclipse.cdt.ui
>
>
Those entries look correct. In our build, it's:
feature@org.eclipse.platform.discovery.feature
=GIT,tag=v20110216-0400,repo=git://
git.eclipse.org/gitroot/e4/org.eclipse.e4.search.git,path=features/org.eclipse.platform.discovery.feature

If the fetch factory is installed, you should get a fetch script similar to:
<project name="FetchScript" default="fetch">
<property name="quiet" value="true"/>

<target name="fetch">
<antcall target="fetch.element"/>
<antcall target="fetch.plugins"/>
<antcall target="fetch.recursively"/>
</target>
<target name="fetch.element" if="featureOnly">
<property name="fetchCacheLocation"
value="${basedir}/scmCache" />
<available
property="${buildDirectory}/features/org.eclipse.platform.discovery.feature/feature.xml"
file="${buildDirectory}/features/org.eclipse.platform.discovery.feature/feature.xml"/>
<available
property="${fetchCacheLocation}/git___git_eclipse_org_gitroot_e4_org_eclipse_e4_search_git"
file="${fetchCacheLocation}/git___git_eclipse_org_gitroot_e4_org_eclipse_e4_search_git"/>
<antcall target="GitUpdateLocalRepo">
.... and so on.

Later,
PW


--
Paul Webster
Hi floor.  Make me a sammich! - GIR

Back to the top