summaryrefslogtreecommitdiff
path: root/spec/models/commit_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Convert to RSpec3 syntax via transpecrs-rspec3Robert Speicher2015-08-301-48/+48
| | | | | | | Command: transpec -c 'bundle exec rspec spec -t ~feature' \ -o should,oneliner,should_receive
* Update `stub` syntax usagesRobert Speicher2015-08-301-5/+5
|
* Update outdated `.items` syntaxRobert Speicher2015-08-301-2/+2
|
* Use `eq` instead of `==` in matchersRobert Speicher2015-08-301-20/+20
|
* Don't `describe` symbolsRobert Speicher2015-08-301-9/+9
|
* `be_(false|true)` -> `be_(falsey|truthy)`Robert Speicher2015-08-301-12/+12
|
* Retrigger builds with [ci skip]Kamil Trzcinski2015-08-211-0/+15
|
* Create specs for build triggersKamil Trzcinski2015-08-211-2/+47
|
* Initial support for build triggersKamil Trzcinski2015-08-211-13/+14
|
* Allow to specify flexible list of types in yamlKamil Trzcinski2015-07-101-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` types: - test - deploy - notify rspec: script: "rspec" rubocop: script: "rubocop" staging: type: deploy script: "echo deploy" only: - master production: type: deploy script: "echo production" only: - tags dockerhub: type: notify script: "curl http://docker/hub/web/hook" downstream: type: notify script: "curl http://build/downstream/jobs" ``` This will trigger two test jobs in parallel, when finished it will trigged either staging or production, when finished it will trigger dockerhub and downstream in parallel.
* Fixed specsKamil Trzcinski2015-07-101-4/+11
|
* Update annotationsannotationsKamil Trzcinski2015-07-061-8/+10
|
* Rounded coverage on commit pageValery Sizov2015-07-011-2/+2
|
* fix coverage calculation on commit pageValery Sizov2015-06-261-0/+23
|
* New syntax of gitlab-ci.ymlValery Sizov2015-06-121-1/+1
|
* fix specsValery Sizov2015-06-031-2/+2
|
* proof of concept yml configurationValery Sizov2015-06-031-1/+1
|
* Refactoring. Clean up advanced settings. Migrate from gotlab_url to pathValery Sizov2015-05-041-7/+1
|
* Fix 'ci skip' tagValery Sizov2015-04-281-14/+0
|
* fix duration visualisationValery Sizov2015-04-231-0/+18
|
* remove protected attributesValery Sizov2015-04-091-8/+0
|
* refactoring of deploy job creationdeploy_without_testsValery Sizov2015-04-011-27/+1
|
* Deploy without testsValery Sizov2015-03-311-3/+24
|
* rename committer to pusherValery Sizov2015-03-101-4/+4
|
* Notify only pusher instead of commiterValery Sizov2015-03-101-9/+7
|
* rename method run_deploy_job to create_deploy_buildsValery Sizov2015-03-101-2/+2
|
* fix random failing specValery Sizov2015-03-041-1/+1
|
* Merge branch 'jobs_tabs' into 'master'Dmitriy Zaporozhets2015-03-041-1/+18
|\ | | | | | | | | | | | | | | | | | | Deploy jobs Implements #153 ![joxi_screenshot_1425465268516](https://dev.gitlab.org/gitlab/gitlab-ci/uploads/23960cfff46ac6c7d1d0ded528917306/joxi_screenshot_1425465268516.png) See merge request !124
| * remove bindingValery Sizov2015-03-041-2/+0
| |
| * Deploy jobsValery Sizov2015-03-021-1/+20
| |
* | Upgrade to rails 4.1.9Jeroen van Baarsen2015-02-281-2/+2
|/ | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
* Fix scheduled retryingValery Sizov2015-01-071-0/+13
|
* Fix spec filesDmitriy Zaporozhets2014-11-061-3/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Refactor commits/builds logicDmitriy Zaporozhets2014-11-051-23/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* ReannotateDmitriy Zaporozhets2014-11-051-8/+8
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Separate Commit model and logic from Build model|etc...Kestred2014-08-231-0/+172
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>