summaryrefslogtreecommitdiff
path: root/doc/ci
Commit message (Collapse)AuthorAgeFilesLines
* Add TOC to yaml README and an intro sectionAchilleas Pipinellis2016-04-141-16/+57
| | | | [ci skip]
* (doc) fix typo to ssh keys doc urlLee2016-04-121-4/+4
|
* fix typoBenjamin Montgomery2016-04-101-1/+3
|
* Make the purpose of artifact config options clearerBenjamin Montgomery2016-04-101-9/+6
|
* actually enable artifactsBenjamin Montgomery2016-04-091-2/+2
|
* Fix Incorrect Quote In Docker Executor ExampleAlex Mayer2016-04-071-1/+1
|
* [ci skip] Fix typo.frodsan2016-04-061-1/+1
|
* Merge branch 'feature-ci-only-except-trigger' into 'master' Kamil TrzciƄski2016-03-221-1/+12
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CI: Add 'triggers' keyword to 'only' and 'except' lists to allow control over when triggers cause builds to run Currently, the `only` and `except` keywords in `.gitlab-ci.yml` only accept ref names or the special `branches` and `tags` keywords. However, these are primarily useful when controlling how repository activity affects the creation of builds. In my case, instead of building on every commit, I'd like to use the following logic: - If the repository is tagged, do a build. - Any other normal commits should not cause a build. - If a build is triggered via the API, always create one for the specified ref. From what I can tell, this isn't possible via the existing YAML syntax. In this MR, I introduce a new keyword `triggers` that goes along with `branches` and `tags`. I can implement the logic above using the following job configuration: ```yaml only: - tags - triggers ``` I updated the tests and documentation to reflect this and everything seems to pass. See merge request !3230
| * add some documentation for `triggers` keyword [ci skip]Jason Roehm2016-03-151-1/+12
| |
* | fixed md anchor linkPat Turner2016-03-181-2/+2
| |
* | Fix for https://gitlab.com/gitlab-org/gitlab-ce/issues/14366Pat Turner2016-03-181-2/+2
| |
* | removed anchor as unsupported in markdownPat Turner2016-03-171-2/+2
| |
* | Fix for https://gitlab.com/gitlab-org/gitlab-ce/issues/14366Pat Turner2016-03-171-0/+2
| |
* | Merge branch 'master' into rm_duplicate_cache_ci_docsAchilleas Pipinellis2016-03-173-13/+287
|\ \
| * | Fix typo in README.md.Mark Pundsack2016-03-161-1/+1
| | |
| * | Merge branch 'patch-1' into 'master' Jeroen van Baarsen2016-03-151-1/+1
| |\ \ | | |/ | |/| | | | | | | | | | | | | Fix typo in Ruby CI test and deploy example [skip ci] See merge request !3201
| | * Fix typo in Ruby CI test and deploy exampleJasper Denkers2016-03-141-1/+1
| | |
| * | Windows CI support is full since Runner v1.0.0Achilleas Pipinellis2016-03-151-1/+1
| | | | | | | | | | | | [ci skip]
| * | Merge branch 'gitlab-ci-yaml-updates' into 'master' Douwe Maan2016-03-141-11/+287
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New CI YAML features This introduces a couple of small `.gitlab-ci.yml` features: 1. Documentation for: Allow to use YAML anchors when parsing the `.gitlab-ci.yml`: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2958 2. Ignore jobs that start with `.` 3. Allow to pass name of created artifacts archive in `.gitlab-ci.yml` 4. Allow to define on which builds the current one depends on These are really small changes so it makes not sense to create a separate merge requests for them. @axil Could you review the documentation part? The implementation on GitLab Runner side: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/merge_requests/113. Fixes: https://gitlab.com/gitlab-org/gitlab-ce/issues/13755 https://gitlab.com/gitlab-org/gitlab-ce/issues/14211 https://gitlab.com/gitlab-org/gitlab-ce/issues/3423 cc @grzesiek @axil @DouweM See merge request !3182
| | * Add yaml definition to codeblockgitlab-ci-yaml-updatesAchilleas Pipinellis2016-03-141-1/+1
| | | | | | | | | | | | [ci skip]
| | * Refactor dependencies directiveAchilleas Pipinellis2016-03-131-21/+26
| | | | | | | | | | | | [ci skip]
| | * Add hidden jobsAchilleas Pipinellis2016-03-131-0/+18
| | |
| | * Refactor YAML anchors and explain the examplesAchilleas Pipinellis2016-03-131-22/+82
| | |
| | * Refactor artifacts:nameAchilleas Pipinellis2016-03-131-11/+12
| | |
| | * Change notes to new styleguide using blockquotesAchilleas Pipinellis2016-03-121-16/+21
| | |
| | * Merge branch 'master' into gitlab-ci-yaml-updatesAchilleas Pipinellis2016-03-121-1/+1
| | |\
| | * | Allow to define on which builds the current one depends onKamil Trzcinski2016-03-111-0/+55
| | | |
| | * | Allow to pass name of created artifacts archive in `.gitlab-ci.yml`Kamil Trzcinski2016-03-111-0/+61
| | | |
| | * | Describe special YAML features: the use of anchors and hidden jobsKamil Trzcinski2016-03-111-0/+71
| | | |
* | | | Merge duplicate cache entry in CI docsrm_duplicate_cache_ci_docsAchilleas Pipinellis2016-03-141-60/+48
|/ / / | | | | | | | | | [ci skip]
* | | Merge branch 'reduce-example-duplication' into 'master' Sytse Sijbrandij2016-03-133-37/+13
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Reduce example documentation. We should not duplicate indexes between the top level and lower level. See merge request !3162
| * | Remove duplicate entries.Sytse Sijbrandij2016-03-121-6/+2
| | |
| * | Reduce example documentation.reduce-example-duplicationSytse Sijbrandij2016-03-103-37/+17
| |/
* | Fix incorrect gitlab.rb variable in CI docsAchilleas Pipinellis2016-03-111-1/+1
|/ | | | [ci skip]
* Merge branch 'doc/ci-api-update' into 'master' Achilleas Pipinellis2016-03-085-451/+83
|\ | | | | | | | | | | | | | | | | | | | | | | Deprecated GitLab CI API clean up Deprecated GitLab CI API clean up. The intent here is to clean up deprecated GitLab CI documentation leaving only relevant information. Since we merged `Ci::Project` to `Project` most of this documentation is outdated. Closes #13610 See merge request !3003
| * Update format of documentation for CI APIdoc/ci-api-updateGrzegorz Bizon2016-03-012-23/+40
| |
| * Remove deprecated CI API docs for commits and projectsGrzegorz Bizon2016-02-293-258/+0
| | | | | | | | [ci skip]
| * Update CI API documentation for runnersGrzegorz Bizon2016-02-291-53/+11
| | | | | | | | [ci skip]
| * Add CI API prefix to documentationGrzegorz Bizon2016-02-291-0/+8
| | | | | | | | [ci skip]
| * Update CI API docs for builds endpoint for runnersGrzegorz Bizon2016-02-292-64/+42
| | | | | | | | [ci skip]
| * Deprecated GitLab CI API clean up - READMEGrzegorz Bizon2016-02-291-79/+8
| |
* | Add a TL;DR version in quick start guideci_quickstartAchilleas Pipinellis2016-03-011-11/+38
| | | | | | | | | | | | | | Borrowed from a user's comment: https://gitlab.com/esr/reposurgeon/merge_requests/27#note_3158109 [ci skip]
* | Add link to triggers doc in variables sectionAchilleas Pipinellis2016-03-011-1/+3
| | | | | | | | [ci skip]
* | Link to examples pageAchilleas Pipinellis2016-02-293-1/+14
| | | | | | | | [ci skip]
* | Reorganize CI sections and give descriptive names to linksAchilleas Pipinellis2016-02-293-44/+42
| |
* | Move languages to examplesAchilleas Pipinellis2016-02-263-11/+12
|/
* Merge branch 'master' of github.com:gitlabhq/gitlabhqRobert Speicher2016-02-221-1/+1
|\
| * Merge pull request #10042 from sestus/masterRobert Schilling2016-02-191-1/+1
| |\ | | | | | | Typo fix in README.md of ci quick-start docs.
| | * Typo fix in README.mdMike Milonakis2016-02-181-1/+1
| | |
* | | Merge branch 'doc/add-build-email-service' into 'master' Achilleas Pipinellis2016-02-191-3/+12
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add documentation about build emails service Closes #12497 See merge request !2871