Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dev-guide
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VeNtura
dev-guide
Commits
2951bccd
Commit
2951bccd
authored
Apr 10, 2015
by
Vinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add jenkin guide
parent
6ab900b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
server/jenkins_guide.md
+43
-0
No files found.
server/jenkins_guide.md
0 → 100644
View file @
2951bccd
## Jenkins Setup Guide
Target server: CenOS 6.6
Jenkins version: 1.607
### 1. Set up server
1.
1. Install essensial build tools
```
bash
sudo
yum groupinstall
"Development tools"
```
1.
2. Install rbenv to Jenkins's home(/var/lib/jenkins)
```
bash
git clone https://github.com/sstephenson/rbenv.git .rbenv
```
1.
3. Install ruby-builds plugin
```
bash
git clone https://github.com/sstephenson/ruby-build.git .rbenv/plugins/ruby-build
```
1.
4. Config
`.bashrc`
file
```
bash
echo
'export PATH="$HOME/.rbenv/bin:$PATH"'
>>
~/.bashrc
echo
'eval "$(rbenv init -)"'
>>
~/.bashrc
```
### 2. Setup Jenkins
2.
1. From the root page, click “Manage Jenkins” then “Manage Plugins”. From the “Available” tab, check the following plugins:
-
rbenv
2.
2. Select “Download now and install after restart”
### 3. Setup Project
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment