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

Configuring the STEM Build on Eclipse CI

Revision as of 13:16, 10 September 2020 by Sedlund.us.ibm.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

STEM TOP BAR.gif

Configuration

Currently the STEM build running on the Eclipse Continuous Integration Infrastructure has two targets.

  1. The current release (STEM 4.0)
  2. The Weekly Integration Build. This runs every Saturday.

see CI_best_practices for more information.

Building STEM

  • Go to the STEM Jenkins build server [1]
  • To build a weekly integration build, click "STEMWeekly", then "Build Now"
  • To build a release build, click "STEM4TychoRelease", then "Build Now".
  • If, for some reason, the release build fails copying over the built artifacts to the STEM download site, click "CopyIntegrationToRelease", then "Build Now". This will copy the latest integration build to the location of release builds on the download site.

Adding a new build Target on the STEM download page

(project committers only)

STEM CI 1.png
Note: Committers must be logged in to see the link actions described in these steps


To create a new download target in the list of available items for download (assuming the new target is called: e.g.,) STEM_M4

If you are interested in uploading the build artifacts to a new target,

1. please

ssh genie.stem@projects-storage.eclipse.org 

2. then create the folder

'mkdir -p /home/data/httpd/download.eclipse.org/stem/ STEM_M4

3. Then add the new build type to the list of versions by editing the echo command

echo " STEM_M4.version=4.0.0.I"${CURRENTDATE} ; echo " STEM_M4.date="${CURRENTDATE}

This echo command must be part of the other echo commands list which will write the output to the version file located at

/home/data/httpd/download.eclipse.org/stem/versions

This file will be used then by the file download.php of the STEM website.
You need only to add an extra line of code to make the website process your new item in the version file. Add:

<?php displayBuild("THE NEW HEADER TEXT", " STEM_M4", $versions); ?>

In this command please use the same target name (i.e., what you used for )STEM_M4

Configuration Page

STEM CI 2.png

Back to the top