Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "PackageDrone/ReleaseBuild"

(Created page with "This page tries to describe the internal build process for releases. == Prerequisites == * Maven 3.3.x with <code>mvn</code> in the "PATH" * <code>gpg-agent</code> and a wor...")
 
Line 5: Line 5:
 
* Maven 3.3.x with <code>mvn</code> in the "PATH"
 
* Maven 3.3.x with <code>mvn</code> in the "PATH"
 
* <code>gpg-agent</code> and a working signing key
 
* <code>gpg-agent</code> and a working signing key
 +
* rpm build tools installed
 +
 +
Have the following properties set in your <code>~/.m2/settings.xml</code> or provide these during the builds:
 +
 +
<jdeb.keyring>/path/to/gpg/keyring</jdeb.keyring>
 +
<jdeb.key>12345678</jdeb.key>
 +
<jdeb.passphrase>passphrase</jdeb.passphrase>
  
 
== Performing the build ==
 
== Performing the build ==

Revision as of 08:16, 18 January 2016

This page tries to describe the internal build process for releases.

Prerequisites

  • Maven 3.3.x with mvn in the "PATH"
  • gpg-agent and a working signing key
  • rpm build tools installed

Have the following properties set in your ~/.m2/settings.xml or provide these during the builds:

<jdeb.keyring>/path/to/gpg/keyring</jdeb.keyring>
<jdeb.key>12345678</jdeb.key>
<jdeb.passphrase>passphrase</jdeb.passphrase>

Performing the build

git clone https://github.com/eclipse/packagedrone.git packagedrone.git
cd packagedrone.git
cd runtime
mvn clean install 
cd ..
mvn clean verify -Prpm -Djdeb-sign  -Dtycho.localArtifacts=ignore

Assembling outputs

Back to the top