summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #193 from chulkilee/2-2-stable2-2-stableDmitriy Zaporozhets2013-06-211-1/+1
|\ | | | | tmp/sockets should be created
| * tmp/sockets should be createdChulki Lee2013-06-191-1/+1
|/
* Merge pull request #191 from earlonrails/2-2-stableDmitriy Zaporozhets2013-06-131-1/+1
|\ | | | | Changed 2-0-stable to 2-2-stable which is the branch that this is on.
| * Changed 2-0-stable to 2-2-stable which is the branch that this is on.Kevin Krauss2013-06-121-1/+1
|/
* point setup doc to 2-2-stable branchv2.2.0Dmitriy Zaporozhets2013-04-091-2/+2
|
* Version up to 2.2.0, updated changelog with new entriesDmitriy Zaporozhets2013-04-092-2/+3
|
* ProjectController specsDmitriy Zaporozhets2013-04-093-1/+55
|
* Changelog updatedDmitriy Zaporozhets2013-04-091-0/+3
|
* Correctly hanlde build timeoutsDmitriy Zaporozhets2013-04-091-10/+2
|
* Dont need chdir since we pass cwd to childprocess. Show user avatars on ↵Dmitriy Zaporozhets2013-04-092-10/+8
| | | | users page
* build badge status markdown a& html code for userDmitriy Zaporozhets2013-04-093-1/+23
|
* restyle badges a bitDmitriy Zaporozhets2013-04-095-1/+2
|
* Add badgesDmitriy Zaporozhets2013-04-091-1/+5
|
* Build feature specsDmitriy Zaporozhets2013-04-092-0/+13
|
* rollback childprocess version to work with shellDmitriy Zaporozhets2013-04-093-7/+7
|
* rollback sidekiq to 2.8.0. Fail build if exception in runnerDmitriy Zaporozhets2013-04-083-3/+9
|
* update sidekiqDmitriy Zaporozhets2013-04-082-6/+6
|
* make top panel static - not fixedDmitriy Zaporozhets2013-04-082-2/+1
|
* more project feature specsDmitriy Zaporozhets2013-04-081-0/+27
|
* show build commit message on project show pageDmitriy Zaporozhets2013-04-083-0/+5
|
* update specs to match capybara 2Dmitriy Zaporozhets2013-04-083-1/+1
|
* Fix user profile update, show user gravatarDmitriy Zaporozhets2013-04-084-9/+47
|
* updated rspec, capybara gemsDmitriy Zaporozhets2013-04-081-23/+19
|
* Fixed testsDmitriy Zaporozhets2013-04-081-2/+2
|
* Update CHANGELOGDmitriy Zaporozhets2013-04-081-0/+7
|
* Securoty update: Update devise to recent versionDmitriy Zaporozhets2013-04-084-4/+6
|
* Replace grit with ruggedDmitriy Zaporozhets2013-04-085-36/+17
|
* replace unicorn with puma in init.d script. added configDmitriy Zaporozhets2013-04-083-78/+125
|
* Merge pull request #142 from Deradon/fix-running-buildsDmitriy Zaporozhets2013-04-081-7/+7
|\ | | | | Try to make Runner.rb transactional safe
| * Try to make Runner.rb transactional safePatrick Helm2013-03-311-7/+7
| |
* | add fontawesome iconsDmitriy Zaporozhets2013-04-083-2/+7
| |
* | update rails. replace unicorn with puma in gemfile, procfileDmitriy Zaporozhets2013-04-083-53/+41
| |
* | Merge branch 'installation-section-in-readme' of ↵Dmitriy Zaporozhets2013-03-311-4/+4
|\ \ | |/ |/| | | /home/git/repositories/gitlab/gitlab-ci
| * Link to installation guide.Sytse Sijbrandij2013-03-311-4/+4
|/
* Version 2.1.0v2.1.0Dmitriy Zaporozhets2013-03-132-1/+7
|
* submit pg compatible schemaDmitriy Zaporozhets2013-03-131-3/+3
|
* add coveralls.ioDmitriy Zaporozhets2013-03-134-2/+23
|
* fix build. Use frozen version of tested repoDmitriy Zaporozhets2013-03-136-23/+37
|
* remove word-wrap:normal to prevent horizontal scrollDmitriy Zaporozhets2013-03-131-1/+1
|
* use order instead of latest_sha scope for builds listDmitriy Zaporozhets2013-03-101-1/+1
|
* prevent status image to be cachedDmitriy Zaporozhets2013-03-101-0/+7
|
* new badgesDmitriy Zaporozhets2013-03-105-1/+1
|
* Merge pull request #117 from cabeca/environment-variablesDmitriy Zaporozhets2013-03-031-0/+6
|\ | | | | Added CI_SERVER* environment variables to build process.
| * Name should not be configurable. It's brand name!Miguel Cabeça2013-02-253-4/+3
| |
| * Added CI_SERVER* environment variables to build process.Miguel Cabeça2013-02-253-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | The environment variable CI_SERVER can be used by the build process to switch some specific CI configuration, like this for example: ```ruby require 'rspec/retry' RSpec.configure do |config| config.default_retry_count = 3 if ENV['CI_SERVER'] end ``` The CI_SERVER_* variables were added for completeness.
* | add libicu to travisDmitriy Zaporozhets2013-03-031-0/+3
| |
* | maintaince page addedDmitriy Zaporozhets2013-02-262-0/+36
| |
* | Merge pull request #100 from cabeca/better-encodeDmitriy Zaporozhets2013-02-264-20/+11
|\ \ | |/ |/| Better encode
| * Refactored encoding of build output.Miguel Cabeça2013-02-022-19/+9
| | | | | | | | | | | | | | | | | | Moved the GitlabCi::Encode.encode! method call closer to the file read. This keeps the boundary between "external file source with crazy encoding -> internal rails code all in utf-8" well defined. Additionally the build output file is opened in binary mode to prevent encoding exceptions while reading it. It will be converted to utf-8 by GitlabCi::Encode.encode!
| * Removed initializer by moving require to encode lib where it belongs.Miguel Cabeça2013-02-022-1/+2
| |