summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Prefer `failed` commit status over `skipped` if no builds were createdbroken-yaml-errorsKamil Trzcinski2015-08-062-7/+18
|
* Fix broken yaml error savingKamil Trzcinski2015-08-063-1/+17
|
* Update CHANGELOGKamil Trzcinski2015-08-051-1/+1
|
* Merge branch 'yaml-variables' into 'master' Kamil Trzciński2015-08-0510-12/+151
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support yaml variables This MR introduces ability to define variables from YAML. ```yaml variables: DB_NAME: postgres test: script: echo $DB_NAME ``` The variables are passed using the same API as Secure Variables. The API introduces additional parameter: public. All variables defined in YAML are marked as public. The GitLab Runner when detects public variables will pass them to the services. This makes it easy to fine tune linked services to for example define database name. ```yaml services: - postgres variables: POSTGRES_DB: gitlab ``` The above example will run [postgres](https://registry.hub.docker.com/u/library/postgres/) and pass POSTGRES_DB to postgres container making it to create `gitlab` database instead of default `postges`. **Note:** All variables will passed to all service containers. It's not designed to distinguish which variable should go where. /cc @sytses @vsizov @dzaporozhets See merge request !227
| * Update documentationKamil Trzcinski2015-08-053-2/+79
| |
| * Satisfy rubocopKamil Trzcinski2015-08-051-2/+2
| |
| * Added support for YAML-defined variablesKamil Trzcinski2015-08-057-10/+72
| |
* | Merge branch 'service-testing' into 'master' Kamil Trzciński2015-08-058-70/+45
|\ \ | |/ |/| | | | | | | | | | | | | | | | | Fix service testing Fixes: - https://gitlab.com/gitlab-org/gitlab-ci/issues/248 - https://gitlab.com/gitlab-org/gitlab-ci/issues/208 /cc @vsizov See merge request !221
| * Fix rubocopservice-testingKamil Trzcinski2015-08-033-18/+18
| |
| * Fix service testingKamil Trzcinski2015-08-038-70/+45
| |
* | Merge branch 'fix-projects-api-empty-list' into 'master' Kamil Trzciński2015-08-053-4/+5
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix project API listing returning empty list when first projects are not added to CI The CI prefers to receive the projects added to CI first /cc @vsizov See merge request !225
| * | Fix specsKamil Trzcinski2015-08-051-2/+2
| | |
| * | Fix project API listing returning empty list when first projects are not ↵Kamil Trzcinski2015-08-052-2/+3
|/ / | | | | | | | | | | added to CI The CI prefers to receive the projects added to CI first
* | Merge branch 'skipped_commit' into 'master' Kamil Trzciński2015-08-054-0/+9
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commits with [ci skip] have special skipped status ![Screen_Shot_2015-07-30_at_14.02.50](https://gitlab.com/gitlab-org/gitlab-ci/uploads/f200af385679b564cd15d730bd4ccd20/Screen_Shot_2015-07-30_at_14.02.50.png) + Commits with [ci skip] are marked as skipped + Commits without builds are marked as skipped Resolution for: + https://dev.gitlab.org/gitlab/gitlab-ci/issues/264 + https://dev.gitlab.org/gitlab/gitlab-ci/issues/266 This requires CE update: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/1073 /cc @vsizov @sytses See merge request !216
| * | Fixed specsKamil Trzcinski2015-08-051-1/+1
| | |
| * | Commits without builds are marked as skippedKamil Trzcinski2015-08-051-1/+1
| | |
| * | Commits with [ci skip] have special skipped statusKamil Trzcinski2015-08-054-0/+9
| | |
* | | Merge branch 'rename-type-to-stage' into 'master' Kamil Trzciński2015-08-0511-90/+103
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | Rename type to stage However, make the `type` and `types` as alias for `stage` and `stages`. /cc @vsizov @sytses See merge request !222
| * | Rename create_builds_for_type to create_builds_for_stage in Commit modelKamil Trzcinski2015-08-051-3/+3
| | |
| * | Fix documentationrename-type-to-stageKamil Trzcinski2015-08-041-5/+5
| | |
| * | Fix specsKamil Trzcinski2015-08-031-14/+14
| | |
| * | Update documentationKamil Trzcinski2015-08-031-17/+22
| | |
| * | Update db/schemaKamil Trzcinski2015-08-032-3/+3
| | |
| * | Rename all occurrences of type to stageKamil Trzcinski2015-08-038-54/+61
| | |
| * | Soft rename type to stageKamil Trzcinski2015-08-031-12/+13
| | |
* | | Merge branch 'remove-unused-entities' into 'master' Kamil Trzciński2015-08-051-5/+0
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove unused entities See merge request !224
| * | | Remove unused entitiesremove-unused-entitiesKamil Trzcinski2015-08-041-5/+0
| |/ /
* | | Merge branch 'access-token-api' into 'master' Kamil Trzciński2015-08-057-29/+27
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | Refactor access_token usage for API requests This MR refactors GitLab API usage to use either access_token or private_token. It also allows to use access_token when executing GitLab CI API. /cc @vsizov @dzaporozhets See merge request !226
| * | Fix broken specsaccess-token-apiKamil Trzcinski2015-08-041-1/+1
| | |
| * | Update CHANGELOGKamil Trzcinski2015-08-041-0/+2
| | |
| * | Allow to use access_token in GitLab CI APIKamil Trzcinski2015-08-041-2/+5
| | |
| * | Refactor GitLab API usage to use either access_token or private_tokenKamil Trzcinski2015-08-045-27/+20
|/ /
* | Merge branch 'truncate-fix' into 'master' Kamil Trzciński2015-08-031-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix truncate_first_line if message is nil Fixes https://gitlab.com/gitlab-org/gitlab-ci/issues/255 /cc @jacobvosmaer See merge request !217
| * | Fix truncate_first_line if message is niltruncate-fixKamil Trzcinski2015-08-031-1/+1
| | |
* | | Merge branch 'user-avatar' into 'master' Kamil Trzciński2015-08-0312-81/+103
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use avatars from GitLab Rewrite Gravatar URLs if needed in order to have images in different size /cc @dzaporozhets @vsizov See merge request !220
| * | | Fix broken specsuser-avatarKamil Trzcinski2015-08-031-0/+4
| | | |
| * | | Update changelogKamil Trzcinski2015-08-031-0/+1
| | | |
| * | | Use avatars from GitLabKamil Trzcinski2015-08-0310-81/+98
|/ / / | | | | | | | | | Rewrite Gravatar URLs if needed in order to have images in different size
* | | Merge branch 'yaml-validation' into 'master' Kamil Trzciński2015-08-033-16/+21
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Make YAML validation stricter /cc @vsizov See merge request !218
| * | Make YAML validation stricterKamil Trzcinski2015-08-033-16/+21
|/ /
* | Merge branch 'ci-test' into 'master' Kamil Trzciński2015-08-032-0/+2
|\ \ | |/ |/| | | | | | | | | Randomize test database /cc @vsizov See merge request !219
| * Randomize test databaseKamil Trzcinski2015-08-032-0/+2
|/
* Merge branch 'application_settings' into 'master' Kamil Trzciński2015-07-3014-12/+144
|\ | | | | | | | | | | | | | | | | | | | | Added Application Settings This moves some of the settings from application.yml to Admin page. ![Screen_Shot_2015-07-30_at_12.22.27](https://gitlab.com/gitlab-org/gitlab-ci/uploads/d37aa0003d9afaeb85aa350bb02e6f07/Screen_Shot_2015-07-30_at_12.22.27.png) /cc @sytses @vsizov See merge request !215
| * Fix specsKamil Trzcinski2015-07-301-1/+2
| |
| * Added missing RequestStoreapplication_settingsKamil Trzcinski2015-07-302-0/+3
| |
| * Added Application SettingsKamil Trzcinski2015-07-3012-12/+140
| |
* | Merge branch 'image-alt-text' into 'master'Kamil Trzciński2015-07-303-3/+3
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | Do not use image's file name as alternative text `image_tag` by default uses the image's file name for the img tag's alt attribute. This is not preferable in many cases. E.g. it clutters the UI with a long hash string if a gravatar could not be loaded. To fix this, the `alt` option is set for `image_tag` calls. ![gitlab-ci-img-alt](https://gitlab.com/dgerhardt/gitlab-ci/uploads/2699d149983912e458e2375fe9732b0d/gitlab-ci-img-alt.png) See merge request !214
| * Do not use image's file name as alternative textDaniel Gerhardt2015-07-303-3/+3
| | | | | | | | | | | | | | | | `image_tag` by default uses the image's file name for the img tag's alt attribute. This is not preferable in many cases. E.g. it clutters the UI with a long hash string if a gravatar could not be loaded. To fix this, the `alt` option is set for `image_tag` calls.
* | Merge branch 'truncate-commitmsg-at-newline' into 'master'Kamil Trzciński2015-07-303-2/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Truncate commit messages after subject line in table Commit messages are now additionally truncated after the first line. Before, a commit message's body was attached behind the subject which made messages hardly readable in some cases. ![gitlab-ci-truncate-commitmsg](https://gitlab.com/dgerhardt/gitlab-ci/uploads/a0c601eb1abbce7a7b9e4e0e3f16f303/gitlab-ci-truncate-commitmsg.png) See merge request !213
| * | Truncate commit messages after subject line in tableDaniel Gerhardt2015-07-293-2/+6
| |/ | | | | | | | | | | Commit messages are now additionally truncated after the first line. Before, a commit message's body was attached behind the subject which made messages hardly readable in some cases.