Skip to content

aeonconsulting/gitlab-ci

 
 

Repository files navigation

GitLab CI is an open-source continuous integration server

Screen

Requirements:

The project is designed for the Linux operating system.

We officially support (recent versions of) these Linux distributions:

  • Ubuntu Linux
  • Debian/GNU Linux

We recommend to use server with at least 756MB RAM for gitlab-ci instance.

Setup:

1. Required packages:

sudo apt-get update
sudo apt-get upgrade

sudo apt-get install -y wget curl gcc checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libreadline6-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev openssh-server git-core libyaml-dev postfix libpq-dev
sudo apt-get install redis-server 

2. Install Ruby

wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz
tar xfvz ruby-1.9.3-p194.tar.gz
cd ruby-1.9.3-p194
./configure
make
sudo make install

3. Prepare MySQL

sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev

# Login to MySQL
$ mysql -u root -p

# Create the GitLab CI database
mysql> CREATE DATABASE IF NOT EXISTS `gitlab_ci_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;

# Create the MySQL User change $password to a real password
mysql> CREATE USER 'gitlab_ci'@'localhost' IDENTIFIED BY '$password';

# Grant proper permissions to the MySQL User
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlab_ci_production`.* TO 'gitlab_ci'@'localhost';

4. Get code

git clone https://github.com/gitlabhq/gitlab-ci.git

5. Setup application

# Install dependencies
#
bundle

# Copy mysql db config
#
# make sure to update username/password in config/database.yml
#
cp config/database.yml.example config/database.yml

# Setup DB
#
bundle exec rake db:setup RAILS_ENV=production

6. Run

# For development 
bundle exec foreman start -p 3000

# For production
bundle exec thin start -p 3000 -d -e production
bundle exec rake environment resque:work RAILS_ENV=production PIDFILE=./resque.pid BACKGROUND=yes QUEUE=runner 

7. Login

[email protected] # email
5iveL!fe # password

Releases

No releases published

Packages

No packages published