summaryrefslogtreecommitdiff
path: root/spec/services/create_commit_service_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Convert to RSpec3 syntax via transpecrs-rspec3Robert Speicher2015-08-301-16/+16
| | | | | | | Command: transpec -c 'bundle exec rspec spec -t ~feature' \ -o should,oneliner,should_receive
* Use `described_class` where appropriateRobert Speicher2015-08-301-1/+1
|
* Use `eq` instead of `==` in matchersRobert Speicher2015-08-301-7/+7
|
* Don't `describe` symbolsRobert Speicher2015-08-301-2/+2
|
* `be_(false|true)` -> `be_(falsey|truthy)`Robert Speicher2015-08-301-3/+3
|
* Prefer `failed` commit status over `skipped` if no builds were createdbroken-yaml-errorsKamil Trzcinski2015-08-061-0/+13
|
* Fix broken yaml error savingKamil Trzcinski2015-08-061-0/+15
|
* Fixed specsKamil Trzcinski2015-08-051-1/+1
|
* Commits with [ci skip] have special skipped statusKamil Trzcinski2015-08-051-0/+1
|
* Allow to specify flexible list of types in yamlKamil Trzcinski2015-07-101-26/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` 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.
* Improved validation of .gitlab-ci.ymlValery Sizov2015-06-291-1/+1
|
* yaml refactoringValery Sizov2015-06-191-11/+0
|
* improve parserValery Sizov2015-06-151-1/+1
|
* New syntax of gitlab-ci.ymlValery Sizov2015-06-121-17/+33
|
* Do not retry build for the same commit and refValery Sizov2015-06-051-0/+21
|
* fix specsValery Sizov2015-06-031-40/+47
|
* Fix 'ci skip' tagValery Sizov2015-04-281-0/+17
|
* skip commit creation if there is no appropriate jobValery Sizov2015-04-101-2/+42
|
* refactoring of deploy job creationdeploy_without_testsValery Sizov2015-04-011-0/+13
|
* Fix testsDmitriy Zaporozhets2015-01-101-4/+2
|
* Refactor commits/builds logicDmitriy Zaporozhets2014-11-051-0/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Separate Commit model and logic from Build model|etc...Kestred2014-08-231-0/+25
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>