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 "Hudson"

(Hudson for Committers)
(Choosing the right slave)
(24 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 
= General Information  =
 
= General Information  =
  
The Eclipse Foundation runs a Hudson continuous integration server that eclipse hosted projects can take advantage of for their builds.  The Hudson server allows for the execution of Continuous Integration Builds, Nightly Builds, Integration Builds, Release Builds, and Testing. The Hudson instance is maintained by the eclipse community. Job creation is limited to committers and admin rights are administered by the community as a whole.  
+
The Eclipse Foundation runs a Hudson continuous integration server that Eclipse-hosted projects can take advantage of for their builds. Currently this is hosted here: https://hudson.eclipse.org/ . The Hudson server allows for the execution of Continuous Integration Builds, Nightly Builds, Integration Builds, Release Builds, and Testing. Hudson is maintained by the Eclipse Webmasters. A Hudson sandbox instance is available for those who like the bleeding edge; however, its stability may suffer due to frequent restarts, untested configurations and upgrades.
 +
 
 +
*Hudson "Stable" instance: https://hudson.eclipse.org/
 +
*Hudson Sandbox instance: https://hudson.eclipse.org/sandbox/
 +
*Hudson Sandbox instance: https://hudson.eclipse.org/perftests/
 +
 
 +
Note if you are looking for information on the Hudson software project itself at Eclipse then that can be found at [[Hudson-ci|hudson-ci]].
 +
 
 +
== Hudson configuration and tools  ==
 +
 
 +
The Hudson setup uses a combination of SLES 11 x86_64 machines for Linux slaves, Windows 7 for the Windows slave(s) and Mac OS X. These machines are behind a firewall so any outbound http(s) connections are proxied.
 +
 
 +
The following global variables are set(identically across installs):
 +
 
 +
*JVM_OPTS: proxy data (see "Accessing the Internet" below)
 +
*ANT_ARGS: proxy data
 +
*ANT_OPTS: proxy data
 +
 
 +
Each node also has a .m2/settings.xml file with the proxy data.
 +
 
 +
=== Choosing the right slave ===
 +
 
 +
* '''hudson-slave1, hudson-slave2, hudson-slave4 and hudson-slave6''' - these are the main build nodes for Hudson jobs. You can specify them by name or by using the 'build2' label.
 +
* '''hudson-slave5''' - this is an ia64 slave.
 +
* '''hudson-slave7, hudson-slave8''' - these are ppc64 slaves located at OSUOSL.
 +
* '''fastlane''' - this slave is intended for usage during a release train crunch when re-spins may require more capacity than hudson-slave1&2 can provide. By default jobs should not run here.
 +
* '''hudson-perf1-tests''' - this slave is used for running performance tests ONLY.
 +
* '''mac-tests and windows7tests''' - these 2 slaves are meant for running UI tests for their respective OS versions. By default jobs should not run on either slave.
 +
 
 +
See also: [[Hudson server performance metrics]]
 +
 
 +
=== Server Storage ===
 +
 
 +
[[Image:Build infra layout.png|thumb|Build and Hudson storage layout]] Three tiers of storage are available for storing Workspaces, build artifacts, nightly and release builds. For optimal build performance and service availability, it is important that you use each storage device according to its intended purpose.
 +
 
 +
The image on the right illustrates the three storage tiers and their intended purpose.
 +
 
 +
== Tools(and locations) ==
 +
 
 +
*Maven 2.2.1 (installed automatically)
 +
*Maven 3.0 alpha 5 (installed automatically)
 +
*Maven 3.0-alpha-5-local (/shared/common/apache-maven-3.0-alpha-5)
 +
*Maven 3.0-alpha-6-local (/shared/common/apache-maven-3.0-alpha-6)
 +
*Maven 3.0-Beta-1 (/shared/common/apache-maven-3.0-beta-1)
 +
 
 +
*Sun Java 5 SR 22 64bit (/shared/common/jdk-1.5.0-22.x86_64)
 +
*Sun Java 5 R 16 32bit (/shared/common/jdk-1.5.0_16)
 +
*Sun Java 5 R 22 64bit (/shared/common/jdk-1.5.0-22.x86_64)
 +
*Sun Java 6 R 21 32bit (/shared/common/sun-jdk1.6.0_21_i586)
 +
*Sun Java 6 R 21 64bit (/shared/common/sun-jdk1.6.0_21_x64)
 +
 
 +
*Apache-ant-1.8.1 (/shared/common/apache-ant-1.8.1)
 +
*Apache-ant-1.7.1 (/shared/common/apache-ant-1.7.1)
 +
*Apache-ant-1.7.0 (/shared/common/apache-ant-1.7.0)
 +
*Apache-ant-1.6.5 (/shared/common/apache-ant-1.6.5)
 +
 
 +
*Headless Buckminster 3.6 (/shared/common/buckminster-3.6)
 +
*Buckminster 3.6 Integration (installed automatically)
 +
 
 +
== Accessing the Internet using Proxy  ==
 +
 
 +
Each Hudson instance has unrestricted access to the Internet by using proxy.eclipse.org. The shell environment variables below are set for the Hudson build user. If your build process overrides, or bypasses these variables, you must instruct your tools to use the proxy service to access external sites.
 +
 
 +
    ftp_proxy=http://proxy.eclipse.org:9898
 +
  http_proxy=http://proxy.eclipse.org:9898
 +
  https_proxy=http://proxy.eclipse.org:9898
 +
  no_proxy='localhost, 127.0.0.1, 172.30.206.0, eclipse.org'
 +
 
 +
    JAVA_ARGS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -Dhttp.nonProxyHosts=*.eclipse.org -Dhttps.nonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -Dftp.nonProxyHosts=*.eclipse.org"
 +
 
 +
    JVM_OPTS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"
 +
 
 +
    ANT_ARGS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"
 +
 
 +
    ANT_OPTS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"
 +
 
 +
=== Why use a Proxy?  ===
 +
 
 +
The purpose of the Proxy for Hudson is not for security -- we use firewalls for that. The proxy is used for three specific reasons:
 +
 
 +
#The Eclipse Hudson environment is expected to grow to a large number of slaves for builds and for tests. If each of those slaves requires a routable IP address, the Foundaton will be required to acquire (at cost) additional IP blocks, which further complicates routing and firewall setups.
 +
#A proxy will allow us to track and monitor external dependencies that are downloaded at build time, for IP purposes.
 +
#A proxy will enable us to implement caching at the proxy level, should the CI mechanism begin to download the entire world and consume too much bandwidth.
 +
 
 +
=== Configuring a proxy for the p2 director ===
 +
The p2 director does not respect the "http.proxyHost" etc. options. Since the p2 director is an Eclipse application, one way to configure the proxy settings is to set the configuration file '''configuration/.settings/org.eclipse.core.net.prefs''' in the director installation like this:
 +
  # add proxy configuration
 +
  cat > "${directorInstallDirectory}/director/configuration/.settings/org.eclipse.core.net.prefs" <<EOF
 +
  eclipse.preferences.version=1
 +
  nonProxiedHosts=*.eclipse.org|localhost|127.0.0.1
 +
  org.eclipse.core.net.hasMigrated=true
 +
  proxyData/HTTP/hasAuth=false
 +
  proxyData/HTTP/host=proxy.eclipse.org
 +
  proxyData/HTTP/port=9898
 +
  systemProxiesEnabled=false
 +
  EOF
 +
The easiest way to obtain this file is to configure an Eclipse installation on your own computer (in Eclipse, go to '''Window > Preferences > General > Network Connections'''), and then copy the configuration that Eclipse wrote in '''<eclipse>/configuration/.settings/org.eclipse.core.net.prefs'''.
 +
 
 +
=== Configuring for a proxy on Windows OS ===
 +
 
 +
On the Windows operating system, proxy settings (and exceptions to using the proxy) can be set in "Internet Options". These are "detected" by Eclipse and set in "native" values of proxy preferences, but, apparently, from searching eclipse bugs for "proxies", some functions in Eclipse use these preferences and others do not. In any case, you might HAVE to set the Windows Internet Options proxy exceptions and in some cases it might make things easier. (For one case of details/history, see bug {{bug|372880}}.
 +
 
 +
== Additional Troubleshooting Tips  ==
 +
 
 +
=== Buckminster CVS materializing: proxy error: Forbidden  ===
 +
 
 +
From Martin Taal, via [http://www.eclipse.org/forums/index.php?t=tree&goto=628738#page_top Forums]:
 +
 
 +
Buckminster cvs materializing, uses a proxy, how is this configured?
 +
 
 +
To finish this thread. Michael Wenz pointed me to a change made in the cdo build (to solve this issue), a snippet from his email to me:
 +
 
 +
But I saw that the CDO build is green again and they still do an Ant call from Hudson that again triggers Buckminster. Previously that build failed with the same exception as ours did or do.
 +
 
 +
Not sure what these guys changed, but I saw that they added something in their build.xml that seems to fix this. I found 2 snippets that appear to be in connection with this: ... &lt;condition property="no.proxy" value="${env.no_proxy}, dev.eclipse.org" else="dev.eclipse.org"&gt; &lt;isset property="env.no_proxy" /&gt; &lt;/condition&gt; ...
 +
 
 +
... <!-- Launch the eclipse application --> &lt;java fork="true" jar="${@{app}.launcher}" dir="${@{app}.deploy.dir}" failonerror="true"&gt; &lt;env key="no_proxy" value="${no.proxy}" /&gt; &lt;properties /&gt; <!-- Uncomment to debug <jvmarg value=" -agentlib:jdwp=transport=dt_socket,address=8000,server=y,sus pend=y "/> --> &lt;args /&gt; &lt;/java&gt; ...  
  
 
== Hudson for Committers  ==
 
== Hudson for Committers  ==
  
 
*[[Common Build Infrastructure/Getting Started/Build In Hudson|Build in Hudson]] - Information on requesting jobs, running jobs, setting up builds.  
 
*[[Common Build Infrastructure/Getting Started/Build In Hudson|Build in Hudson]] - Information on requesting jobs, running jobs, setting up builds.  
*[[Building an RCP application with hudson (Buckminster)|RCP apps with Buckminster on Hudson]]
+
*[[Building an RCP application with hudson (Buckminster)|RCP apps with Buckminster on Hudson]]  
*[[Teneo/Teneo_Build_Setup|Building an Eclipse project (Teneo) with Buckminster and Hudson]]
+
*[[Teneo/Teneo Build Setup|Building an Eclipse project (Teneo) with Buckminster and Hudson]]  
 
*[[Common Build Infrastructure/Getting Started#In_Hudson|Athena Common Builder on Hudson]]  
 
*[[Common Build Infrastructure/Getting Started#In_Hudson|Athena Common Builder on Hudson]]  
 
*[[Hudson/Maven|Maven on Hudson]]  
 
*[[Hudson/Maven|Maven on Hudson]]  
 
*[[Hudson/HowTo|How to....]]
 
*[[Hudson/HowTo|How to....]]
 +
 +
== Hudson for Committer Project-level Administration  ==
 +
 +
Normally "project level" administration is defined for a Hudson job. This allows for only one or a few committers to have "full access" to the job, to do builds, change the configuration, or even delete the job. To give access to everyone, say to "read" the builds, you can add the user "anonymous" and mark the "read" check box. Typically, it is desired to have some "in between" access to all the committers of a project, for example, to maybe any committer can kick off a build, but only the project-level administrator can change the configuration. If this is desired, there is a "role" groups that can be used instead of listing all committers by name. The "role" name is formed by perpending "ROLE_" to the upper case version of the Linux group that defines the committers. For example, EPP committers are authorized using the Linux group ''technology.packaging'', so their Hudson group would be ROLE_TECHNOLOGY.PACKAGING. So, as an example, the project level authorization might look like the following, from the Hudson "configure project" page: <br>
 +
 +
[[Image:Projectlevel.png|Example Project Level Security settings]]
  
 
== Hudson for Administrators  ==
 
== Hudson for Administrators  ==
Line 16: Line 138:
 
*[[Common Build Infrastructure/Managing Hudson|Manage Hudson]]  
 
*[[Common Build Infrastructure/Managing Hudson|Manage Hudson]]  
 
*[[Hudson/Admin/UpgradeHudson|Upgrade Hudson]]  
 
*[[Hudson/Admin/UpgradeHudson|Upgrade Hudson]]  
*[[Hudson/Admin/Installed_Plugins|Installed Plugins]]
+
*[[Hudson/Admin/Installed Plugins|Installed Plugins]]
  
=== Duties of Administrators ===
+
=== Duties of Administrators ===
  
 
#Hudson upgrades and restarts  
 
#Hudson upgrades and restarts  
Line 27: Line 149:
 
#Monitor the Hudson Inbox.
 
#Monitor the Hudson Inbox.
  
=== Who are the Adminstrators ===
+
=== Who are the Adminstrators ===
  
*Nick Boldt
+
* Eclipse Webmasters - webmaster@eclipse.org
*Kim Moir
+
* David Williams
*David Carver
+
  
Please add other known administrators.
+
You can contact the Hudson admins by opening [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Community&component=Hudson a bug]
  
 
== Hudson for Distributed Builds  ==
 
== Hudson for Distributed Builds  ==
Line 41: Line 162:
 
*How do I use the Test Slave Node to run Tests?
 
*How do I use the Test Slave Node to run Tests?
  
[[Category:Releng]]
+
[[Category:Releng]] [[Category:Hudson]]
[[Category:Hudson]]
+

Revision as of 09:24, 12 October 2012

General Information

The Eclipse Foundation runs a Hudson continuous integration server that Eclipse-hosted projects can take advantage of for their builds. Currently this is hosted here: https://hudson.eclipse.org/ . The Hudson server allows for the execution of Continuous Integration Builds, Nightly Builds, Integration Builds, Release Builds, and Testing. Hudson is maintained by the Eclipse Webmasters. A Hudson sandbox instance is available for those who like the bleeding edge; however, its stability may suffer due to frequent restarts, untested configurations and upgrades.

Note if you are looking for information on the Hudson software project itself at Eclipse then that can be found at hudson-ci.

Hudson configuration and tools

The Hudson setup uses a combination of SLES 11 x86_64 machines for Linux slaves, Windows 7 for the Windows slave(s) and Mac OS X. These machines are behind a firewall so any outbound http(s) connections are proxied.

The following global variables are set(identically across installs):

  • JVM_OPTS: proxy data (see "Accessing the Internet" below)
  • ANT_ARGS: proxy data
  • ANT_OPTS: proxy data

Each node also has a .m2/settings.xml file with the proxy data.

Choosing the right slave

  • hudson-slave1, hudson-slave2, hudson-slave4 and hudson-slave6 - these are the main build nodes for Hudson jobs. You can specify them by name or by using the 'build2' label.
  • hudson-slave5 - this is an ia64 slave.
  • hudson-slave7, hudson-slave8 - these are ppc64 slaves located at OSUOSL.
  • fastlane - this slave is intended for usage during a release train crunch when re-spins may require more capacity than hudson-slave1&2 can provide. By default jobs should not run here.
  • hudson-perf1-tests - this slave is used for running performance tests ONLY.
  • mac-tests and windows7tests - these 2 slaves are meant for running UI tests for their respective OS versions. By default jobs should not run on either slave.

See also: Hudson server performance metrics

Server Storage

Build and Hudson storage layout
Three tiers of storage are available for storing Workspaces, build artifacts, nightly and release builds. For optimal build performance and service availability, it is important that you use each storage device according to its intended purpose.

The image on the right illustrates the three storage tiers and their intended purpose.

Tools(and locations)

  • Maven 2.2.1 (installed automatically)
  • Maven 3.0 alpha 5 (installed automatically)
  • Maven 3.0-alpha-5-local (/shared/common/apache-maven-3.0-alpha-5)
  • Maven 3.0-alpha-6-local (/shared/common/apache-maven-3.0-alpha-6)
  • Maven 3.0-Beta-1 (/shared/common/apache-maven-3.0-beta-1)
  • Sun Java 5 SR 22 64bit (/shared/common/jdk-1.5.0-22.x86_64)
  • Sun Java 5 R 16 32bit (/shared/common/jdk-1.5.0_16)
  • Sun Java 5 R 22 64bit (/shared/common/jdk-1.5.0-22.x86_64)
  • Sun Java 6 R 21 32bit (/shared/common/sun-jdk1.6.0_21_i586)
  • Sun Java 6 R 21 64bit (/shared/common/sun-jdk1.6.0_21_x64)
  • Apache-ant-1.8.1 (/shared/common/apache-ant-1.8.1)
  • Apache-ant-1.7.1 (/shared/common/apache-ant-1.7.1)
  • Apache-ant-1.7.0 (/shared/common/apache-ant-1.7.0)
  • Apache-ant-1.6.5 (/shared/common/apache-ant-1.6.5)
  • Headless Buckminster 3.6 (/shared/common/buckminster-3.6)
  • Buckminster 3.6 Integration (installed automatically)

Accessing the Internet using Proxy

Each Hudson instance has unrestricted access to the Internet by using proxy.eclipse.org. The shell environment variables below are set for the Hudson build user. If your build process overrides, or bypasses these variables, you must instruct your tools to use the proxy service to access external sites.

   ftp_proxy=http://proxy.eclipse.org:9898
  http_proxy=http://proxy.eclipse.org:9898
  https_proxy=http://proxy.eclipse.org:9898
  no_proxy='localhost, 127.0.0.1, 172.30.206.0, eclipse.org'
   JAVA_ARGS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -Dhttp.nonProxyHosts=*.eclipse.org -Dhttps.nonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -Dftp.nonProxyHosts=*.eclipse.org"
   JVM_OPTS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"
   ANT_ARGS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"
   ANT_OPTS="-Dhttp.proxyHost=proxy.eclipse.org -Dhttp.proxyPort=9898 -Dhttps.proxyHost=proxy.eclipse.org -Dhttps.proxyPort=9898 -DhttpnonProxyHosts=*.eclipse.org -DhttpsnonProxyHosts=*.eclipse.org -Dftp.proxyHost=proxy.eclipse.org -Dftp.proxyPort=9898 -DftpnonProxyHosts=*.eclipse.org"

Why use a Proxy?

The purpose of the Proxy for Hudson is not for security -- we use firewalls for that. The proxy is used for three specific reasons:

  1. The Eclipse Hudson environment is expected to grow to a large number of slaves for builds and for tests. If each of those slaves requires a routable IP address, the Foundaton will be required to acquire (at cost) additional IP blocks, which further complicates routing and firewall setups.
  2. A proxy will allow us to track and monitor external dependencies that are downloaded at build time, for IP purposes.
  3. A proxy will enable us to implement caching at the proxy level, should the CI mechanism begin to download the entire world and consume too much bandwidth.

Configuring a proxy for the p2 director

The p2 director does not respect the "http.proxyHost" etc. options. Since the p2 director is an Eclipse application, one way to configure the proxy settings is to set the configuration file configuration/.settings/org.eclipse.core.net.prefs in the director installation like this:

 # add proxy configuration
 cat > "${directorInstallDirectory}/director/configuration/.settings/org.eclipse.core.net.prefs" <<EOF
 eclipse.preferences.version=1
 nonProxiedHosts=*.eclipse.org|localhost|127.0.0.1
 org.eclipse.core.net.hasMigrated=true
 proxyData/HTTP/hasAuth=false
 proxyData/HTTP/host=proxy.eclipse.org
 proxyData/HTTP/port=9898
 systemProxiesEnabled=false
 EOF

The easiest way to obtain this file is to configure an Eclipse installation on your own computer (in Eclipse, go to Window > Preferences > General > Network Connections), and then copy the configuration that Eclipse wrote in <eclipse>/configuration/.settings/org.eclipse.core.net.prefs.

Configuring for a proxy on Windows OS

On the Windows operating system, proxy settings (and exceptions to using the proxy) can be set in "Internet Options". These are "detected" by Eclipse and set in "native" values of proxy preferences, but, apparently, from searching eclipse bugs for "proxies", some functions in Eclipse use these preferences and others do not. In any case, you might HAVE to set the Windows Internet Options proxy exceptions and in some cases it might make things easier. (For one case of details/history, see bug bug 372880.

Additional Troubleshooting Tips

Buckminster CVS materializing: proxy error: Forbidden

From Martin Taal, via Forums:

Buckminster cvs materializing, uses a proxy, how is this configured?

To finish this thread. Michael Wenz pointed me to a change made in the cdo build (to solve this issue), a snippet from his email to me:

But I saw that the CDO build is green again and they still do an Ant call from Hudson that again triggers Buckminster. Previously that build failed with the same exception as ours did or do.

Not sure what these guys changed, but I saw that they added something in their build.xml that seems to fix this. I found 2 snippets that appear to be in connection with this: ... <condition property="no.proxy" value="${env.no_proxy}, dev.eclipse.org" else="dev.eclipse.org"> <isset property="env.no_proxy" /> </condition> ...

... <java fork="true" jar="${@{app}.launcher}" dir="${@{app}.deploy.dir}" failonerror="true"> <env key="no_proxy" value="${no.proxy}" /> <properties /> <args /> </java> ...

Hudson for Committers

Hudson for Committer Project-level Administration

Normally "project level" administration is defined for a Hudson job. This allows for only one or a few committers to have "full access" to the job, to do builds, change the configuration, or even delete the job. To give access to everyone, say to "read" the builds, you can add the user "anonymous" and mark the "read" check box. Typically, it is desired to have some "in between" access to all the committers of a project, for example, to maybe any committer can kick off a build, but only the project-level administrator can change the configuration. If this is desired, there is a "role" groups that can be used instead of listing all committers by name. The "role" name is formed by perpending "ROLE_" to the upper case version of the Linux group that defines the committers. For example, EPP committers are authorized using the Linux group technology.packaging, so their Hudson group would be ROLE_TECHNOLOGY.PACKAGING. So, as an example, the project level authorization might look like the following, from the Hudson "configure project" page:

Example Project Level Security settings

Hudson for Administrators

Duties of Administrators

  1. Hudson upgrades and restarts
  2. New Hudson accounts
  3. Add plugins
  4. Set policy for Hudson usage
  5. Watch changes to this wiki page
  6. Monitor the Hudson Inbox.

Who are the Adminstrators

  • Eclipse Webmasters - webmaster@eclipse.org
  • David Williams

You can contact the Hudson admins by opening a bug

Hudson for Distributed Builds

  • Testing on Multiple Platforms
  • What is the Test-Slave Node?
  • How do I use the Test Slave Node to run Tests?

Back to the top