Jenkins CI Server: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
== | == Ubuntu == | ||
* installed on | * installed on Ubuntu 11.10 (Oneiric Ocelot) | ||
apt-get remove apache | |||
== Mono == | == Mono == | ||
* using Mono 2.10 for best support for c# 4.0 etc | |||
apt-get install mono-runtime mono-xbuild mono-gmcs | |||
== other development tools == | == other development tools == | ||
apt-get install bzr | |||
== Jenkins == | == Jenkins == | ||
* http://pkg.jenkins-ci.org/ | * http://pkg.jenkins-ci.org/debian-stable/ | ||
wget -q -O - http://pkg.jenkins-ci.org/debian-stable/jenkins-ci.org.key | sudo apt-key add - | |||
vi /etc/apt/sources.list: | |||
deb http://pkg.jenkins-ci.org/debian-stable binary/ | |||
apt-get update | |||
apt-get install jenkins | |||
Revision as of 08:53, 29 October 2011
Ubuntu
- installed on Ubuntu 11.10 (Oneiric Ocelot)
apt-get remove apache
Mono
- using Mono 2.10 for best support for c# 4.0 etc
apt-get install mono-runtime mono-xbuild mono-gmcs
other development tools
apt-get install bzr
Jenkins
wget -q -O - http://pkg.jenkins-ci.org/debian-stable/jenkins-ci.org.key | sudo apt-key add - vi /etc/apt/sources.list: deb http://pkg.jenkins-ci.org/debian-stable binary/
apt-get update apt-get install jenkins