gitlab-org--gitlab-foss/app/models/ci
Kamil Trzciński d240666800 Merge branch 'ci-commit-as-pipeline' into 'master'
Ci::Commit becomes a Pipeline object

1. Ci::Commit receives context: ref, :tag.
1. One Ci::Commit describes a one Pipeline
1. Pipeline is created from `.gitlab-ci.yml`
1. Pipeline is a ordered group of builds
1. We test MR against Pipeline
1. Pipelines have a separate view (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703)
1. Pipeline can be triggered from UI (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703)
1. Later we change `Trigger -> TriggerRequest -> Build` to `Trigger -> Pipeline` (future)
1. We add a Pipeline Hook that will be triggered on Pipeline status change  (future)
1. We extend notifications to use `Pipeline Hook` to send summary on pipeline changes (future)

After merging that I'll prepare a separate MR that will unify naming, database columns, table names:
```
Ci::Commit -> Pipeline
Ci::Build -> Build
CommitStatus -> Job
GenericCommitStatus -> ExternalJob

ci_commits -> pipelines
ci_builds -> jobs
```

This MR implements first 5 points.

This is made to solve this issue https://gitlab.com/gitlab-org/gitlab-ce/issues/14149.

See merge request !3653
2016-04-21 08:10:37 +00:00
..
build.rb Merge branch 'ci-commit-as-pipeline' into 'master' 2016-04-21 08:10:37 +00:00
commit.rb Write specs for this feature 2016-04-16 22:43:40 +02:00
runner.rb Removed arel_table receiver from search methods 2016-03-11 15:25:23 -05:00
runner_project.rb Annotate models 2016-01-06 13:09:55 +00:00
trigger.rb Merge branch '8-4-stable' into ci/api-triggers 2016-01-14 10:58:40 +01:00
trigger_request.rb Annotate models 2015-11-13 19:22:46 +01:00
variable.rb Merge branch '8-4-stable' into ci/api-variables 2016-01-13 23:59:00 +01:00