Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dirigible/Infrastructure/Update Downloads"

Line 1: Line 1:
 
== Update Downloads ==
 
== Update Downloads ==
  
==== Manage ====
+
==== Reset to Branch ====
     ssh <user>@build.eclipse.org
+
     git clone -b <branch> https://github.com/eclipse/dirigible.git
  
==== Clean old nightly build ====
+
==== Local Build ====
     rm -r nightly/
+
     mvn clean install
 +
    mvn clean install -P trial
 +
    mvn clean install -P tomcat-postgres
 +
    mvn clean install -P sap
  
==== Remote copy ====
+
==== Prepare for Upload ====
     scp -r . <user>@build.eclipse.org:~/downloads/dirigible/nightly
+
     cp <dirigible/dist> <for_upload>/<version_folder>
  
==== Copy as Stable ====
+
For releases: R-<major>.<minor>-<date tag> e.g. R-2.1-201510071717
In case the current nightly build is stable
+
  
    rm -r stable/
+
For milestones: M<date tag> e.g. M20151117-1717
  
     cp -avr nightly stable
+
 
 +
==== Remote Copy ====
 +
     cd <for_upload>
 +
    scp -r <version_folder> <user>@build.eclipse.org:~/downloads/dirigible/drops/<version_folder>
 +
 
 +
==== Check Structure ====
 +
    http://download.eclipse.org/dirigible/
  
 
==== Downloads Check Tool ====
 
==== Downloads Check Tool ====

Revision as of 06:00, 24 November 2015

Update Downloads

Reset to Branch

   git clone -b <branch> https://github.com/eclipse/dirigible.git

Local Build

   mvn clean install
   mvn clean install -P trial
   mvn clean install -P tomcat-postgres
   mvn clean install -P sap

Prepare for Upload

   cp <dirigible/dist> <for_upload>/<version_folder>

For releases: R-<major>.<minor>-<date tag> e.g. R-2.1-201510071717

For milestones: M<date tag> e.g. M20151117-1717


Remote Copy

   cd <for_upload>
   scp -r <version_folder> <user>@build.eclipse.org:~/downloads/dirigible/drops/<version_folder>

Check Structure

   http://download.eclipse.org/dirigible/

Downloads Check Tool

https://www.eclipse.org/projects/tools/downloads.php?id=ecd.dirigible

Back to the top