diff options
-rw-r--r-- | CHANGELOG | 8 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | app/views/projects/_gitlab.html.haml | 2 | ||||
-rw-r--r-- | resque.sh | 3 |
4 files changed, 14 insertions, 4 deletions
@@ -1,3 +1,11 @@ +v4.0.0 + - Shared runners (no need to add runner to every project) + - Admin area (only available for GitLab admins) + - Hide all runners management into admin area + - Use http cloning for builds instead of deploy keys + - Allow choose between git clone and git fetch when get code for build + - Make build timeout actually works + v3.2.0 - Limit visibility of projects by gitlab authorized projects - Use one page for both gitlab and gitlab-ci projects @@ -61,6 +61,11 @@ and * [Installation guide](https://github.com/gitlabhq/gitlab-ci/blob/master/doc/installation.md) + +### Docs + +* [API](doc/api.md) + ### How to add a new project to GitLab CI 1. Log in the GitLab CI web interface diff --git a/app/views/projects/_gitlab.html.haml b/app/views/projects/_gitlab.html.haml index 7c37362..9079428 100644 --- a/app/views/projects/_gitlab.html.haml +++ b/app/views/projects/_gitlab.html.haml @@ -13,7 +13,7 @@ %table.table %tr %th ID - %th Name + %th Project Name %th Last build %th Access %th Builds diff --git a/resque.sh b/resque.sh deleted file mode 100644 index 9fa1f8e..0000000 --- a/resque.sh +++ /dev/null @@ -1,3 +0,0 @@ -mkdir -p tmp/pids -nohup bundle exec rake environment resque:work QUEUE=runner,scheduler_task RAILS_ENV=production PIDFILE=tmp/pids/resque_worker.pid > ./log/resque.log & -nohup bundle exec rake environment resque:scheduler RAILS_ENV=production PIDFILE=tmp/pids/resque_schedule.pid > ./log/schedule.log & |