summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix specsfix-variable-saving-errorKamil Trzcinski2015-08-211-1/+1
|
* Redirect to known route instead of :backKamil Trzcinski2015-08-211-1/+1
|
* Fix spellingKamil Trzcinski2015-08-211-1/+1
|
* Update variables from within it's own controller not the project'sKamil Trzcinski2015-08-214-3/+18
|
* Fix problem with variables savingKamil Trzcinski2015-08-212-1/+2
|
* Merge branch 'variable-fix' into 'master'Robert Speicher2015-08-192-0/+4
|\ | | | | | | | | | | Require the variable key to be set and unique See merge request !234
| * Require the variable key to be set and uniquevariable-fixKamil Trzcinski2015-08-192-0/+4
| |
* | Merge branch 'fix-build-retry-stage' into 'master'Robert Speicher2015-08-192-0/+2
|\ \ | | | | | | | | | | | | | | | Add missing stage when doing retry on a build See merge request !236
| * | Add missing stage when doing retry on a buildKamil Trzcinski2015-08-192-0/+2
| |/
* | Merge branch 'yaml-validation' into 'master'Robert Speicher2015-08-192-5/+17
|\ \ | |/ |/| | | | | | | | | | | | | | | Make the YAML validation more stricter - deny all globals that are not hashes and doesn't contain script, the script is required now - verify that script is either string or array of an strings See merge request !235
| * Make the YAML validation more stricteryaml-validationKamil Trzcinski2015-08-192-5/+17
|/ | | | | - deny all globals that are not hases and doesn't contain script, the script is required now - verify that script is either string or array of an strings
* Merge branch 'fix-modal-title' into 'master'Robert Schilling2015-08-181-2/+2
|\ | | | | | | | | | | Fix typo in modal title See merge request !233
| * Fix typo in modal titleStan Hu2015-08-181-2/+2
|/
* Merge branch 'master' into 'master'Kamil Trzciński2015-08-131-2/+2
|\ | | | | | | | | | | changes docker image name from python to ruby See merge request !232
| * changes docker image name from python to rubyTim Hughes2015-08-131-2/+2
|/
* Merge branch 'broken-yaml-errors' into 'master' Kamil Trzciński2015-08-063-8/+35
|\ | | | | | | | | | | | | | | | | | | | | | | | | Fix broken yaml errors It fixes two errors: 1. invalid `.gitlab-ci.yml` did not trigger yaml_errors, thus making the commit success 2. skipped status were used for invalid `.gitlab-ci.yml` Link to issue: https://gitlab.com/gitlab-org/gitlab-ci/issues/261 /cc @vsizov See merge request !228
| * 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
| | |