summaryrefslogtreecommitdiff
path: root/spec/models
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fixed testsKamil Trzcinski2015-01-291-10/+112
| |
| * Migrate E-mail notification to ServicesKamil Trzcinski2015-01-291-0/+90
| |
* | Allow Project#skip_refs to accept & match regexallow_regex_for_project_skip_refAndrew Ang2015-02-041-0/+17
|/ | | | | | * Added rspec tests for #skip_ref? * Allow regex matching * Added hints on Project form
* Fixed typo in slack message specsKamil Trzcinski2015-01-231-1/+1
|
* Added Service and SlackService specsKamil Trzcinski2015-01-123-0/+186
|
* Merge branch 'last_build_fix' into 'master'Dmitriy Zaporozhets2015-01-081-0/+13
|\ | | | | | | | | | | Last_build fix See merge request !99
| * Fix scheduled retryingValery Sizov2015-01-071-0/+13
| |
* | Re-annotateDmitriy Zaporozhets2015-01-071-1/+0
|/
* remove script field from projectValery Sizov2014-12-011-2/+1
|
* Fix spec filesDmitriy Zaporozhets2014-11-061-3/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Refactor commits/builds logicDmitriy Zaporozhets2014-11-053-52/+16
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* ReannotateDmitriy Zaporozhets2014-11-053-8/+18
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix testsDmitriy Zaporozhets2014-11-042-6/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'enhancement/separate-commits-from-builds' of ↵Dmitriy Zaporozhets2014-10-313-158/+243
|\ | | | | | | | | | | | | | | | | | | | | | | https://gitlab.com/kestred/gitlab-ci into kestred/gitlab-ci-enhancement/separate-commits-from-builds Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: CHANGELOG app/models/build.rb app/services/create_build_service.rb db/schema.rb
| * Separate Commit model and logic from Build model|etc...Kestred2014-08-233-158/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an entirely non-user facing change which prepares GitLab CI for future support of Parallel Builds. See https://about.gitlab.com/2013/12/19/gitlab-ci-with-parallel-builds-and-deployments/. These changes specifically avoid changing the supported API or changing any of the website views. Changes to the website views will come in tandem with future features like "Multiple build scripts". The supported API won't change as part of any future changes on this vein, to maintain support for the unofficial GitLab CI runners. This closes the following implementation step: 1. A commit has many builds Signed-off-by: Kestred <kestred@riotcave.com>
* | Implement parsing and set coverage after build finishedDmitriy Zaporozhets2014-10-011-0/+26
|/ | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Add tests for Network model.Gabor Nagy2014-07-091-0/+54
|
* Fix testsDmitriy Zaporozhets2014-07-091-1/+4
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Improve coverage of app/models/build.rb.Gabor Nagy2014-06-261-3/+217
|
* Remove public key from runner modelDmitriy Zaporozhets2014-05-065-24/+34
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix web hook specsDmitriy Zaporozhets2014-05-051-2/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* create web hookVõ Anh Duy2014-02-251-0/+58
|
* Fix public scope, use new project field nameDmitriy Zaporozhets2014-01-301-1/+1
|
* Add specs for image_for_build_serviceDmitriy Zaporozhets2014-01-301-1/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* CreateProjectService testsDmitriy Zaporozhets2014-01-291-7/+17
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* AnnotateDmitriy Zaporozhets2014-01-292-19/+19
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* CreateBuildService for build creation and more validation to build modelDmitriy Zaporozhets2014-01-292-11/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Show commit sha for build duration. Fixed testsDmitriy Zaporozhets2014-01-111-28/+25
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix notification for success buildsDmitriy Zaporozhets2013-12-181-28/+18
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Send email notification on change of build status from success to failed and ↵Jeroen Knoops2013-11-302-42/+39
| | | | failed to success
* Email notification settings can now be managed in settings dialog.Jeroen Knoops2013-11-202-28/+152
|
* Annotate!Dmitriy Zaporozhets2013-10-291-0/+1
|
* Add display name to runner modelChris Stephan2013-08-281-6/+22
| | | | | | | | | | | This commit adds a method to the runner model that will return a display name for the runner. It will return the runner's token if a runner doesn't have a description or if it's empty. It will return the description otherwise. This is in order to give each particular runner a more friendly name when viewing them on a particular project. This commit also updates the runner_projects index to use this display name instead of using the token. And finally it adds spec tests to cover the new method added.
* Annotate projectDmitriy Zaporozhets2013-06-041-0/+1
|
* You should add runners to project. WHen runner added -> deploy key for ↵Dmitriy Zaporozhets2013-06-034-38/+66
| | | | runner added to gitlab project
* Fix specsDmitriy Zaporozhets2013-05-312-11/+5
|
* Runner resource. Now only registered runners can use gitlab-ciDmitriy Zaporozhets2013-05-311-0/+5
|
* Fixed testsDmitriy Zaporozhets2013-04-081-2/+2
|
* fix build. Use frozen version of tested repoDmitriy Zaporozhets2013-03-131-2/+2
|
* [ci skip] tag for skipping buildsYury Lebedev2013-02-181-0/+12
|
* Implement minimal public accessDmitriy Zaporozhets2013-01-291-9/+14
|
* fixed schema. removed outdated testsDmitriy Zaporozhets2013-01-152-28/+24
|
* Polising after scheduleDmitriy Zaporozhets2013-01-061-4/+4
|
* add scheduler supportRichie Min2012-12-261-1/+27
|
* Added travis.yml. Fixed testDmitriy Zaporozhets2012-11-281-1/+0
|
* Project: generate random token if none is providedJohannes Schleifenbaum2012-11-271-0/+12
|
* Add running status and support for sha statusDmitriy Zaporozhets2012-11-191-1/+1
|
* Improve parser. tests addedDmitriy Zaporozhets2012-11-141-1/+1
|
* Builds for sha. Fixed run. Tabs per branches. Tests are fixedDmitriy Zaporozhets2012-11-121-2/+2
|
* Unit testsDmitriy Zaporozhets2012-11-092-4/+29
|