Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert to RSpec3 syntax via transpecrs-rspec3 | Robert Speicher | 2015-08-30 | 1 | -16/+16 |
| | | | | | | | Command: transpec -c 'bundle exec rspec spec -t ~feature' \ -o should,oneliner,should_receive | ||||
* | Use `described_class` where appropriate | Robert Speicher | 2015-08-30 | 1 | -1/+1 |
| | |||||
* | Use `eq` instead of `==` in matchers | Robert Speicher | 2015-08-30 | 1 | -7/+7 |
| | |||||
* | Don't `describe` symbols | Robert Speicher | 2015-08-30 | 1 | -2/+2 |
| | |||||
* | `be_(false|true)` -> `be_(falsey|truthy)` | Robert Speicher | 2015-08-30 | 1 | -3/+3 |
| | |||||
* | Prefer `failed` commit status over `skipped` if no builds were createdbroken-yaml-errors | Kamil Trzcinski | 2015-08-06 | 1 | -0/+13 |
| | |||||
* | Fix broken yaml error saving | Kamil Trzcinski | 2015-08-06 | 1 | -0/+15 |
| | |||||
* | Fixed specs | Kamil Trzcinski | 2015-08-05 | 1 | -1/+1 |
| | |||||
* | Commits with [ci skip] have special skipped status | Kamil Trzcinski | 2015-08-05 | 1 | -0/+1 |
| | |||||
* | Allow to specify flexible list of types in yaml | Kamil Trzcinski | 2015-07-10 | 1 | -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.yml | Valery Sizov | 2015-06-29 | 1 | -1/+1 |
| | |||||
* | yaml refactoring | Valery Sizov | 2015-06-19 | 1 | -11/+0 |
| | |||||
* | improve parser | Valery Sizov | 2015-06-15 | 1 | -1/+1 |
| | |||||
* | New syntax of gitlab-ci.yml | Valery Sizov | 2015-06-12 | 1 | -17/+33 |
| | |||||
* | Do not retry build for the same commit and ref | Valery Sizov | 2015-06-05 | 1 | -0/+21 |
| | |||||
* | fix specs | Valery Sizov | 2015-06-03 | 1 | -40/+47 |
| | |||||
* | Fix 'ci skip' tag | Valery Sizov | 2015-04-28 | 1 | -0/+17 |
| | |||||
* | skip commit creation if there is no appropriate job | Valery Sizov | 2015-04-10 | 1 | -2/+42 |
| | |||||
* | refactoring of deploy job creationdeploy_without_tests | Valery Sizov | 2015-04-01 | 1 | -0/+13 |
| | |||||
* | Fix tests | Dmitriy Zaporozhets | 2015-01-10 | 1 | -4/+2 |
| | |||||
* | Refactor commits/builds logic | Dmitriy Zaporozhets | 2014-11-05 | 1 | -0/+1 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Separate Commit model and logic from Build model|etc... | Kestred | 2014-08-23 | 1 | -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> |