Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document CI_BUILD_TOKENci-build-token | Mark Pundsack | 2016-06-14 | 1 | -0/+2 |
| | |||||
* | Merge branch 'artifacts-expire-date' into 'master' | Rémy Coutable | 2016-06-14 | 1 | -0/+35 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Artifacts expire date What do you think @grzesiek? The syntax will be simple: ``` job: artifacts: expire_in: 7d ``` - [x] Implement `expire_in` - [x] Check current design of expiry information with @jschatz1 and @markpundsack - [x] Add tests in GitLab application for a `ExpireBuildArtifactsWorker` and for `ArtifactsController::keep` - [x] Add user documentation how to use `artifacts:expire_in` - [x] Prepare GitLab Runner changes to pass `expire_in`: gitlab-org/gitlab-ci-multi-runner!191 - [x] Fix `timeago` with help of @jschatz1 - [x] Merge latest master after builds view changes @iamphill - [ ] Add Omnibus support for `expire_build_artifacts_worker` cron job - [ ] Add documentation how to configure `expire_build_artifacts_worker` This is based on https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4201. See merge request !4200 | ||||
| * | Merge remote-tracking branch 'origin/master' into artifacts-expire-date | Kamil Trzcinski | 2016-06-14 | 4 | -37/+199 |
| |\ | |||||
| * | | Added documentation to artifacts expire | Kamil Trzcinski | 2016-06-13 | 1 | -0/+35 |
| | | | |||||
| * | | Improve after review | Kamil Trzcinski | 2016-06-13 | 1 | -1/+1 |
| | | | |||||
| * | | Added description of artifacts:when | Kamil Trzcinski | 2016-06-13 | 1 | -0/+27 |
| | | | |||||
* | | | Update CI API docs | Achilleas Pipinellis | 2016-06-14 | 4 | -202/+4 |
| |/ |/| | | | | | | | | | | | - Move ci/api under api/ci - Clean up builds.md and runners.md - Replace old links with new ones - Add CI API links in ci/README.md | ||||
* | | Remove our | Mark Pundsack | 2016-06-13 | 1 | -1/+1 |
| | | |||||
* | | De-note-ify | Mark Pundsack | 2016-06-13 | 1 | -4/+4 |
| | | |||||
* | | Clarify dind example | Mark Pundsack | 2016-06-13 | 1 | -2/+2 |
| | | |||||
* | | Make minor grammar change | Mark Pundsack | 2016-06-13 | 1 | -2/+2 |
| | | |||||
* | | Make Achilleas' suggested changes | Mark Pundsack | 2016-06-13 | 1 | -28/+28 |
| | | |||||
* | | Use docker:latest | Mark Pundsack | 2016-06-13 | 1 | -2/+2 |
| | | |||||
* | | Move registry CI example to CI docs | Mark Pundsack | 2016-06-13 | 1 | -4/+18 |
| | | |||||
* | | Reformat notes | Mark Pundsack | 2016-06-13 | 1 | -4/+4 |
| | | |||||
* | | Remove unnecessary message | Mark Pundsack | 2016-06-13 | 1 | -4/+0 |
| | | |||||
* | | Refactor notes | Mark Pundsack | 2016-06-13 | 1 | -6/+14 |
| | | |||||
* | | Drop some 'however's | Mark Pundsack | 2016-06-13 | 1 | -4/+4 |
| | | |||||
* | | Add more pros and cons for each docker approach | Mark Pundsack | 2016-06-13 | 1 | -10/+19 |
| | | |||||
* | | Fix docker volume | Mark Pundsack | 2016-06-13 | 1 | -1/+1 |
| | | |||||
* | | Fix more references to old gitlab-runner | Mark Pundsack | 2016-06-13 | 3 | -6/+6 |
| | | |||||
* | | Fix more instructions | Mark Pundsack | 2016-06-13 | 1 | -3/+3 |
| | | |||||
* | | Fix runner CLI instructions | Mark Pundsack | 2016-06-13 | 1 | -4/+4 |
| | | |||||
* | | Fix instructions | Mark Pundsack | 2016-06-13 | 1 | -2/+1 |
| | | |||||
* | | Moar commas | Mark Pundsack | 2016-06-13 | 1 | -2/+2 |
| | | |||||
* | | Add notes | Mark Pundsack | 2016-06-13 | 1 | -0/+6 |
| | | |||||
* | | Add example using GitLab Container Registry | Mark Pundsack | 2016-06-13 | 1 | -0/+72 |
| | | |||||
* | | Add docker bind-mount as an option | Mark Pundsack | 2016-06-13 | 1 | -10/+68 |
| | | |||||
* | | Improve after review | Kamil Trzcinski | 2016-06-10 | 1 | -1/+1 |
| | | |||||
* | | Added description of artifacts:when | Kamil Trzcinski | 2016-06-10 | 1 | -0/+27 |
|/ | |||||
* | Fix typo | Aurelio Jargas | 2016-05-27 | 1 | -1/+1 |
| | |||||
* | Merge branch 'feature/runner-config-untagged-jobs' into 'master' | Robert Speicher | 2016-05-19 | 1 | -1/+7 |
|\ | | | | | | | | | | | | | Add config for CI Runner that prevents it from picking untagged jobs Closes #3456 See merge request !4039 | ||||
| * | Add minor corrections related to config of runner | Grzegorz Bizon | 2016-05-19 | 1 | -3/+3 |
| | | |||||
| * | Add docs for a new configuration setting for runner | Grzegorz Bizon | 2016-05-19 | 1 | -1/+7 |
| | | |||||
* | | Merge branch 'fix/after-script-documentation-update' into 'master' | Jeroen van Baarsen | 2016-05-19 | 1 | -1/+1 |
|\ \ | |/ |/| | | | | | | | | | Update 'after_script' introduction note Related to gitlab-org/gitlab-ci-multi-runner#1321 See merge request !4205 | ||||
| * | Update 'after_script' introduction notefix/after-script-documentation-update | Tomasz Maczukin | 2016-05-18 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'doc-broken-links' into 'master' | Jeroen van Baarsen | 2016-05-19 | 2 | -1/+1 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | Fix broken documentation links Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15249 - [x] `/help/ui`- This is working for me - [x] `/help/ci/examples/deployment/README.md` - Fixed - [x] `/help/ci/api/projects.md` - Fixed - [x] `/help/markdown/LICENSE` - Cannot do much to fix it, added a note. - [x] `/help/ci/ssh/README.md` - Cannot find this link referenced anywhere. See merge request !3903 | ||||
| * | Fix broken linksdoc-broken-links | Achilleas Pipinellis | 2016-04-19 | 2 | -1/+1 |
| | | | | | | | | [ci skip] | ||||
* | | Merge branch 'patch-1' into 'master' | Dmitriy Zaporozhets | 2016-05-18 | 1 | -2/+2 |
|\ \ | | | | | | | | | | | | | | | | | | | Fix broken link in CI quickstart docs The newline between the `[label]` and the `(link)` caused it to be interpreted literally: http://doc.gitlab.com/ce/ci/quick_start/README.html See merge request !3541 | ||||
| * | | Fix broken link in CI quickstart docs | Florian | 2016-04-05 | 1 | -2/+2 |
| | | | | | | | | | The space between the [label] and the (link) caused it to be interpreted literally. | ||||
* | | | Merge branch 'patch-3' into 'master' | Achilleas Pipinellis | 2016-05-08 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | blost -> blog See merge request !4063 | ||||
| * | | | blost -> blog | Ben Bodenmiller | 2016-05-06 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge branch 'update-doc-ci-examples' into 'master' | Achilleas Pipinellis | 2016-05-08 | 3 | -9/+9 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update CI example docs. Docs for CI examples are updated as follows: - Fix a dead link from CI example top to `dpl` - Specify Django for a Python project, not Rails - Use the latest Python Docker image as [Heroku supports only Python 3.5.1 (and 2.7.11)](https://devcenter.heroku.com/articles/python-support) - Show the latest Docker Hub URL links. See merge request !4082 | ||||
| * | | | | Update CI example docs. | Takuya Noguchi | 2016-05-07 | 3 | -9/+9 |
| |/ / / | |||||
* | | | | Rename Docker with Docker Engine. | Takuya Noguchi | 2016-05-07 | 2 | -4/+4 |
| | | | | |||||
* | | | | Update Docker Hub links. | Takuya Noguchi | 2016-05-07 | 5 | -10/+10 |
|/ / / | |||||
* | | | Merge branch 'gitlab-ci-ssh-keys-doc-fix' into 'master' | Rémy Coutable | 2016-05-04 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Documentation fix in CI SSH keys setup In recent versions of Docker, the `/.dockerinit` file doesn't exist any more when running inside a container. That file is used in the example here to detect whether the runner is running inside Docker or not. Change it to check for the existence of `/.dockerenv`, which does exist in all current versions of Docker. See merge request !3938 | ||||
| * | | | fix: in recent versions of Docker, the /.dockerinit file doesn't exist; use ↵ | Jason Roehm | 2016-04-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | /.dockerenv instead [ci skip] Signed-off-by: Jason Roehm <jasonr@3db-labs.com> | ||||
* | | | | Merge branch 'fix/docker-in-docker-ci-documentation' into 'master' | Achilleas Pipinellis | 2016-04-28 | 1 | -20/+63 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update using_docker_build.md, clarify the 'privileged' mode requirement Related to #15428 Fixes gitlab-org/gitlab-ci-multi-runner#1261 See merge request !3909 | ||||
| * | | | | Copyedit `using_docker_build.md` and fix linksfix/docker-in-docker-ci-documentation | Achilleas Pipinellis | 2016-04-28 | 1 | -13/+24 |
| | | | | |