summaryrefslogtreecommitdiff
path: root/doc/ci
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Merge branch 'ci-quick-start-doc-improvement' into 'master' Achilleas Pipinellis2016-09-151-1/+2
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | doc/ci/quick_start/README: improve sentence about link to a Lint tool ## What does this MR do? It improves the `doc/ci/quick_start/README.md` documentation. ## Are there points in the code the reviewer needs to double check? The reviewer can check that there is no more **CI settings** menu and that the Lint tool can be accessed under **Pipelines > Pipelines** and **Pipelines > Builds**. ## Why was this MR needed? Because the CI quick start documentation was not correct. ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? It is not a code change so I don't think the below criteria are relevant. - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [ ] Added for this feature/bug - [ ] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? I didn't check if there was an issue for this. See merge request !6301
| * | | | doc/ci/quick_start/README: improve sentence about link to a Lint tool ci-quick-start-doc-improvementChristian Couder2016-09-121-1/+2
| | | | | | | | | | | | | | | | | | | | The link is now a button under **Pipelines > Pipelines** and **Pipelines > Builds**. There is no more **CI settings** menu.
* | | | | Merge branch 'issue_21825' into 'master' Rémy Coutable2016-09-121-0/+6
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | Add information about user and manual build start to runner as variables Closes #21825 See merge request !6201
| * | | | Add information about user and manual build start to runner as variablesSergey Gnuskov2016-09-091-0/+6
| | | | |
* | | | | Merge branch 'zj-update-ci-examples-doc' into 'master' Achilleas Pipinellis2016-09-091-6/+8
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Minor update on CI docs examples cc @ayufan @markpundsack Commit message: > Triggered by gitlab-org/gitlab-ci-yml#1 I've investigated how this is organized so far and did a minor clean up. In my opinion we should just keep a list of up to date blog posts in the docs and examples should be included in gitlab-org/gitlab-ci-yml. This reduces the number of projects and docs pages one has to look for information. See merge request !5806
| * | | | Minor update on CI docs exampleszj-update-ci-examples-docZ.J. van de Weg2016-09-091-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Triggered by gitlab-org/gitlab-ci-yml#1 I've investigated how this is organized so far and did a minor clean up. In my opinion we should just keep a list of up to date blog posts in the docs and examples should be included in gitlab-org/gitlab-ci-yml. This reduces the number of projects and docs pages one has to look for information. [ci skip]
* | | | | Fix: Switch sample values for $CI_SERVER_REVISION and $CI_SERVER_VERSION.Patrick Thaele2016-09-071-2/+2
| | | | |
* | | | | Add a reference to triggers docs in ci/yaml/README.mdAchilleas Pipinellis2016-09-061-0/+7
| | | | |
* | | | | Replace the triggers docs with new imagesAchilleas Pipinellis2016-09-065-1/+3
| | | | |
* | | | | Remove doctocAchilleas Pipinellis2016-09-061-44/+0
| | | | |
* | | | | Update README.mdGustav Trenwith2016-09-051-1/+1
| | | | |
* | | | | Update README.mdGustav Trenwith2016-09-021-1/+2
| | | | |
* | | | | Update documentation about hidden keys in CI YAMLGrzegorz Bizon2016-08-291-9/+12
| | | | |
* | | | | doc: fix (batches) being treated as link reference rather than textElan Ruusamäe2016-08-261-1/+1
| |_|_|/ |/| | |
* | | | Merge branch 'fix/improve-test-coverage-badge-pipelines' into 'master' Douwe Maan2016-08-191-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Render coverage badge using latest successful pipeline ## What does this MR do? This MR make test coverage badge to report value for the latest successful pipeline, instead of the latest one, regardless the status. Latest pipeline is often running, which makes coverage report inaccurate. Latest pipeline can be also the failed one, which may mean that not all stages got processed, therefore coverage report can be inaccurate as well. This also improves coverage badge performance because it is not necessary to touch repository to get recent SHA on the branch. ## Why was this MR needed? See #21013 ## What are the relevant issue numbers? Closes #21013 ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5862
| * | | | Update documentation for test coverage report badgeGrzegorz Bizon2016-08-181-0/+2
| | |/ / | |/| |
* | | | The keyword `when` can also take `manual` as a value.Maxime Buquet2016-08-181-1/+1
|/ / /
* | | Add documentation for test coverage report badgeGrzegorz Bizon2016-08-152-10/+37
|/ /
* | use long options for curl examples in API documentation (!5703)winniehell2016-08-092-12/+12
| |
* | Simplify feature introduction notesimplify_intro_features_docAchilleas Pipinellis2016-08-081-1/+1
| | | | | | | | [ci skip]
* | Fix relative URLdoc-artifacts-refactorAchilleas Pipinellis2016-08-041-2/+2
| |
* | Refactor build artifacts documentationAchilleas Pipinellis2016-08-044-175/+4
| | | | | | | | | | | | | | - Split user and admin documentation - Use new location paths - Add new Continuous Integration guide for the Admin area - Link to new guide from the Admin area
* | fix runner install linkBen Bodenmiller2016-08-021-1/+1
| |
* | Merge branch 'document-yaml-colon' into 'master' Achilleas Pipinellis2016-08-011-0/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clarify CI script needing to quote colons ## What does this MR do? Clarifies documentation for `.gitlab-ci.yml` `script`. ## Are there points in the code the reviewer needs to double check? Should this be a note? Is there a link to YAML spec we can point to? ## Why was this MR needed? ## What are the relevant issue numbers? Closes #20177. ## Screenshots (if relevant) See merge request !5481
| * | Update README.mddocument-yaml-colonMark Pundsack2016-07-271-1/+1
| | |
| * | Clarify CI script needing to quote colonsMark Pundsack2016-07-251-0/+2
| | |
* | | Add missing escape at line endAurelio Jargas2016-07-221-1/+1
|/ /
* | Merge branch 'namespace' into 'master' Achilleas Pipinellis2016-07-221-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explain CI_PROJECT_NAMESPACE better ## What does this MR do? Explain CI_PROJECT_NAMESPACE better by adding "The project namespace (username or groupname) that is currently being built". ## Are there points in the code the reviewer needs to double check? Are `username` and `groupname` known words? We use it [here](http://docs.gitlab.com/ee/api/namespaces.html). ## Why was this MR needed? Because `namespace` isn't a well known term. ## What are the relevant issue numbers? ## Screenshots (if relevant) See merge request !5407
| * | Explain CI_PROJECT_NAMESPACE betternamespaceMark Pundsack2016-07-211-1/+1
| | |
* | | Add allow_failure CI documentationdocument-allow_failure-keywordAchilleas Pipinellis2016-07-211-23/+58
| | |
* | | Mention manual actions section in when clause docsmanual-action-grammarAchilleas Pipinellis2016-07-211-4/+6
| | |
* | | Improve grammar of manual actions documentationMark Pundsack2016-07-211-5/+5
| | |
* | | Clarify artifacts:name default valueartifact-nameMark Pundsack2016-07-201-2/+3
|/ /
* | Fix review commentsci-predefined-variablesKamil Trzcinski2016-07-201-1/+1
| |
* | Improve implementation of variablesKamil Trzcinski2016-07-201-7/+7
| |
* | Update documentationKamil Trzcinski2016-07-201-0/+3
| |
* | Update all exposed variables to CI buildsKamil Trzcinski2016-07-201-7/+10
| |
* | Merge remote-tracking branch 'origin/master' into ci-predefined-variablesKamil Trzcinski2016-07-1927-118/+286
|\ \
| * \ Merge branch 'manual-actions' into 'master' Rémy Coutable2016-07-191-1/+16
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for manual CI actions ## What does this MR do? This implements a `when: manual` which allows a jobs to be marked as manual actions. Manual actions have to be explicitly executed by developers. ## What are the relevant issue numbers? This is to solve: https://gitlab.com/gitlab-org/gitlab-ce/issues/17010 See merge request !5297
| | * | Improve code designKamil Trzcinski2016-07-181-1/+1
| | | |
| | * | Improve manual actions code and add model, service and feature testsKamil Trzcinski2016-07-181-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manual actions are accessible from: - Pipelines - Builds - Environments - Deployments
| * | | Update documentation for build artifact dependencies19892-documentationMark Pundsack2016-07-181-1/+2
| |/ /
| * | Fix CI yaml exampleAchilleas Pipinellis2016-07-171-2/+2
| | |
| * | Move CI permissions to permissions.mdAchilleas Pipinellis2016-07-122-23/+2
| | |
| * | Merge branch 'remove-not-released-status' into 'master' Robert Speicher2016-07-111-1/+1
| |\ \ | | |/ | |/| | | | | | | | | | | | | Remove "not released" status from documentation [ci skip] See merge request !5024
| | * Remove not released statusMax Raab2016-06-301-1/+1
| | |
| * | Merge branch 'patch-3' into 'master' Achilleas Pipinellis2016-07-091-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix phpunit command in the docker example. Closes https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1478 See merge request !5147
| | * | gitlab-org/gitlab-ci-multi-runner#1478 Fixed phpunit command in the official ↵kujiy2016-07-081-1/+1
| | | | | | | | | | | | | | | | | | | | doc didn't work. Curl command has to follow redirects now.
| * | | Merge branch 'patch-1' into 'master' Rémy Coutable2016-07-081-1/+1
| |\ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed Typo in README.md ## What does this MR do? Found a Typo in the README.md file. before_script should be with ":" Script didn't work for me without ":" ## Why was this MR needed? Missing ":" can be irritating for new users. See merge request !4419
| | * | Fixed Typo in README.mdPhilipp Kraus2016-06-011-1/+1
| | | |