From Fedora Project Wiki

(Add detail about new flag for director plug-in)
Line 99: Line 99:
Once this is completed, we may perform a real build ensuring that Tycho will resolve itself entirely from the reactor cache we have built up.
Once this is completed, we may perform a real build ensuring that Tycho will resolve itself entirely from the reactor cache we have built up.


Even when building a newer Tycho with the same version as the previous, we must actually build twice to avoid any cyclic dependencies. The first build modifies the version to be different from the previous (often ${version}-SNAPSHOT which is different from ${version}). We can think of this first built version as an "intermediary" build. The second build removes the "SNAPSHOT" so that a proper build may take place that depends on the intermediary build. Note that upstream has confirmed this would have to be done : http://dev.eclipse.org/mhonarc/lists/tycho-user/msg02599.html
Previously, when building a newer Tycho with the same version as the previous, we would first build an intermediary version and then the final version to avoid any cyclic dependencies. Tycho checks reactor projects first when resolving dependencies, so attempting to build a particular version while depending on an identically versioned Tycho would cause a cycle ( See http://dev.eclipse.org/mhonarc/lists/tycho-user/msg02599.html ) . Now we simply modify the version metadata of the Tycho we are depending upon to be different than the one we are attempting to build, thus eliminating the need for an intermediary build. See [http://pkgs.fedoraproject.org/cgit/tycho.git/commit/?id=369a33d447e4cac027a80b94b4b2766008c7e144 Fedora Tycho Commit 369a33 ] for more detail on how this occurs.


== Missing Eclipse Parent POM ==
== Missing Eclipse Parent POM ==


Many Eclipse projects building at the foundation use an [http://wiki.eclipse.org/Maven/Parent_POM eclipse parent pom] to reference various things that most projects would have in common. While this is encouraged for upstream builds, Eclipse does not currently ship this parent pom in Fedora and references to it should be removed. See http://wiki.eclipse.org/Maven/Parent_POM for more details.
Many Eclipse projects building at the foundation use an [http://wiki.eclipse.org/Maven/Parent_POM eclipse parent pom] to reference various things that most projects would have in common. While this is encouraged for upstream builds, Eclipse does not currently ship this parent pom in Fedora and references to it should be removed. See http://wiki.eclipse.org/Maven/Parent_POM for more details.

Revision as of 14:55, 14 July 2014

Purpose

To document and comment upon the integration of Tycho into Fedora.

Information

Upstream : http://www.eclipse.org/tycho/
Fedora Tycho Repository : http://pkgs.fedoraproject.org/gitweb/?p=tycho.git
Koji Builds : http://koji.fedoraproject.org/koji/packageinfo?packageID=11939
Package ACLs : https://admin.fedoraproject.org/pkgdb/acls/name/tycho
Bugs : https://admin.fedoraproject.org/pkgdb/acls/bugs/tycho

Fedora Tycho versions :

  • rawhide : 0.20.0
  • f20 : 0.19.0
  • f19 : 0.18.1

Packages currently having a BuildRequire on Tycho :

cbi-plugins, eclipse, eclipse-cdt, eclipse-checkstyle, eclipse-dltk, eclipse-eclemma, eclipse-egit, eclipse-egit-github, eclipse-fedorapackager, eclipse-gef, eclipse-jbosstools, eclipse-jgit eclipse-linuxtools, eclipse-m2e-core, eclipse-moreunit, eclipse-mpc, eclipse-mylyn, eclipse-packagekit, eclipse-photran, eclipse-pydev, eclipse-rse, eclipse-shelled, eclipse-swtbot, feclipse-maven-plugin, jacoco, sisu, swt-chart, tycho, tycho-extras

Differences from Upstream

Local vs. Remote Repositories

Tycho should respect the state from which the maven build was initiated. Launching a maven build through XMvn (xmvn/mvn-build/%mvn_build) should cause the resolution of Fedora Tycho, and depending on whether an online/offline functionality is set, Tycho will resolve its artifacts accordingly. That is :

When maven is running through XMvn, and offline mode is set, Tycho will resolve its dependencies using only local resources. (eg. reactor cache, system local p2 repository). When maven is running through XMvn, and offline mode is not set, Tycho will first attempt to resolve its dependencies using local resources. If a resource cannot be found locally, Tycho will check remote repositories and place resources into the reactor cache as needed. In this case, a look through the logs can determine what packages were downloaded remotely.

Local OSGi bundle resolution

Note.png
Tycho should detect all system osgi bundles
Tycho should resolve against most system osgi bundles (eclipse bundles, and anything in %{_javadir}, %{_jnidir}) by default. If Tycho is not resolving certain OSGi bundles, this heading is kept as a potential workaround in the event that a solution is not readily available.

Method 1

An OSGi project wishing to build with Tycho that has OSGi dependencies must provide a local p2 repository on the system holding all of those dependencies. This is accomplished in 3 steps :

  1. Eclipse's copy-platform script is used to gather the various dependencies needed for the build and place them in a single folder.
  2. The FeaturesAndBundlesPublisher application is used to create a p2 repository on the local system.
  3. Tycho is made aware of this repository by specifying it under the list of repositories.

A rough boilerplate for the above steps would be :

(At the end of the %prep section of the specfile)

/usr/lib/eclipse/buildscripts/copy-platform SDK \
/usr/lib/eclipse cdt

eclipse -debug -consolelog -nosplash -verbose \
-application org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher \
-metadataRepository file:/path/to/myrepo \
-artifactRepository file:/path/to/myrepo \
-source $PWD/SDK \
-compress -append -publishArtifacts

(In the project's top-level pom.xml, and within the <repositories> tag)

<repository>
 <id>my_local_rpmbuild_repo</id>
 <layout>p2</layout>
 <url>file:/path/to/myrepo</url>
</repository>

Method 2

A strictly simpler way of accomplishing the above (but maybe not as resilient to implementation-specifc changes) is to place the desired OSGi bundles in .m2/p2/repo-sdk . This folder should be relative to the top level pom.xml from which Maven will be executed.

mkdir -p .m2/p2/repo-sdk/plugins
ln -s *.jar .m2/p2/repo-sdk/plugins

Target Platform Configuration

By default, upstream's offering of Tycho will attempt to resolve dependencies for every environment defined for the pom's target-platform-configuration. So for example, if your plugin needs Eclipse SWT, then the build will need to have the SWT fragment for every environment defined.

With access to remote p2 repositories, we could build for any environment, but in Fedora we must only use packages already packaged, and for that particular environment. As a result building for multiple environments at once isn't easily achievable, and in some cases the environment isn't supported by Fedora at all. This can cause all sorts of failures when running a build due to environment-specific dependencies not being available.

To get around this, Fedora's Tycho will (by default) set the target platform environment to be the same as the currently running system. In some cases, certain plugins being built are tied to a certain environment, and if this does not match the system's running environment, they will fail to build. Ideally upstream should have build profiles which allow customization of what is being built. As a last resort, Fedora Tycho has the flag tycho.local.keepTarget. With this flag enabled, Fedora Tycho will behave as an upstream Tycho with regard to target platform configuration. That is, Tycho will set the target platform environment as specified in the project poms.

If you are using tycho.local.keepTarget then you may find that your build is unnecessarily assembling products for platforms that you don't care about. In this case you can use the director.running.env.only flag to make tycho's p2-director plug-in only assemble products for the running target environment -- all other configured environments are omitted. This saves a lot of build time for large products on slow build environments such as 32bit ARM.

Multiple Tycho Versions Specified

As of Tycho 0.16.0, when a project depends upon a version of Tycho that doesn't match the system's version, it will fail. Upstream has implemented this to avoid scenarios where a project might specify multiple versions and fail at runtime with cryptic error messages. This seems to be triggered even when using a lower version and expecting any higher available version to be resolved. Fedora Tycho 0.16.0 has added the property skipTychoVersionCheck to disable this check. As of Tycho 0.18.1, Tycho version checking is ignored by default, so no action needs to be taken. In the event that version checking is desired, the tycho.enableVersionCheck property may be set. (See http://git.eclipse.org/c/tycho/org.eclipse.tycho.git/commit/?id=305eb576d58f1adf8c8f80fee8bdca49da196816 for more details)

Bootstrap Building

The building of Tycho in Fedora is different from most builds. You may have noticed that upstream Tycho actually uses an pre-existing Tycho instance to build itself. This is because Tycho contains OSGi bundles as reactor projects. As a result Tycho has a dependency on itself. In Fedora we're able to break this chain if necessary to build Tycho cleanly when a build does not already exist (none in the buildroot).

To find all Tycho components needed for the build, we look for any components that use ${tychoBootstrapVersion} as their version and add them as well as any dependencies they have on other Tycho components. These are all clearly defined in the pom.xml files and we can then picture a dependency graph of these components.

In addition to this we add any components that Tycho seems to use at runtime. TychoOsgiRuntimeArtifacts.java as well as components.xml (tycho-maven-plugin) contain such components. Certain Tycho projects are of an 'eclipse-test-plugin' type, but despite the fact that we can skip tests, resolution and compilation phases are still run. To avoid having to build tycho-surefire-plugin and it's various dependencies for runtime availability, we can modify the actual lifecycle mapping for our bootstrapped Tycho to omit running tycho-surefire-plugin at runtime.

Once we've discovered and ordered the necessary components we perform the following steps to create a bootstrapped Tycho build :

  1. Build all required OSGi bundles in the tycho-bundles folder using a combination of javac and jar to properly package them. Where certain Tycho OSGi bundles depend on other Tycho OSGi bundles, or external OSGi bundles we set the classpath appropriately.
  2. Place the built OSGi Tycho bundles into the reactor cache as if we had run mvn org.apache.maven.plugins:maven-install-plugin:${install-plugin.version}:install
  3. Build all reactor projects on an individual basis as required using xmvn -f ${proj}/pom.xml -Dmaven.test.skip=true -Dmaven.repo.local=$(pwd)/.m2 install

Once this is completed, we may perform a real build ensuring that Tycho will resolve itself entirely from the reactor cache we have built up.

Previously, when building a newer Tycho with the same version as the previous, we would first build an intermediary version and then the final version to avoid any cyclic dependencies. Tycho checks reactor projects first when resolving dependencies, so attempting to build a particular version while depending on an identically versioned Tycho would cause a cycle ( See http://dev.eclipse.org/mhonarc/lists/tycho-user/msg02599.html ) . Now we simply modify the version metadata of the Tycho we are depending upon to be different than the one we are attempting to build, thus eliminating the need for an intermediary build. See Fedora Tycho Commit 369a33 for more detail on how this occurs.

Missing Eclipse Parent POM

Many Eclipse projects building at the foundation use an eclipse parent pom to reference various things that most projects would have in common. While this is encouraged for upstream builds, Eclipse does not currently ship this parent pom in Fedora and references to it should be removed. See http://wiki.eclipse.org/Maven/Parent_POM for more details.