Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
fd49f1b0
Commit
fd49f1b0
authored
Mar 10, 2016
by
Sytse Sijbrandij
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce example documentation.
parent
3d4063ef
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
37 deletions
+17
-37
doc/ci/README.md
doc/ci/README.md
+2
-21
doc/ci/examples/README.md
doc/ci/examples/README.md
+13
-7
doc/ci/quick_start/README.md
doc/ci/quick_start/README.md
+2
-9
No files found.
doc/ci/README.md
View file @
fd49f1b0
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
### CI User documentation
### CI User documentation
-
[
Get started with GitLab CI
](
quick_start/README.md
)
-
[
Get started with GitLab CI
](
quick_start/README.md
)
-
[
CI examples for various languages
](
examples/README.md
)
-
[
Learn how to enable or disable GitLab CI
](
enable_or_disable_ci.md
)
-
[
Learn how to enable or disable GitLab CI
](
enable_or_disable_ci.md
)
-
[
Learn how `.gitlab-ci.yml` works
](
yaml/README.md
)
-
[
Learn how `.gitlab-ci.yml` works
](
yaml/README.md
)
-
[
Configure a Runner, the application that runs your builds
](
runners/README.md
)
-
[
Configure a Runner, the application that runs your builds
](
runners/README.md
)
...
@@ -14,24 +15,4 @@
...
@@ -14,24 +15,4 @@
-
[
Build artifacts
](
build_artifacts/README.md
)
-
[
Build artifacts
](
build_artifacts/README.md
)
-
[
User permissions
](
permissions/README.md
)
-
[
User permissions
](
permissions/README.md
)
-
[
API
](
api/README.md
)
-
[
API
](
api/README.md
)
-
[
CI services (linked docker containers)
](
services/README.md
)
### CI Examples
-
[
The .gitlab-ci.yml file for GitLab itself
](
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/.gitlab-ci.yml
)
-
[
Test your PHP applications
](
examples/php.md
)
-
[
Test and deploy Ruby applications to Heroku
](
examples/test-and-deploy-ruby-application-to-heroku.md
)
-
[
Test and deploy Python applications to Heroku
](
examples/test-and-deploy-python-application-to-heroku.md
)
-
[
Test Clojure applications
](
examples/test-clojure-application.md
)
-
[
Using `dpl` as deployment tool
](
deployment/README.md
)
-
Help your favorite programming language and GitLab by sending a merge request
with a guide for that language.
### CI Services
GitLab CI uses the
`services`
keyword to define what docker containers should
be linked with your base image. Below is a list of examples you may use:
-
[
Using MySQL
](
services/mysql.md
)
-
[
Using PostgreSQL
](
services/postgres.md
)
-
[
Using Redis
](
services/redis.md
)
-
[
Using Other Services
](
docker/using_docker_images.md#how-to-use-other-images-as-services
)
doc/ci/examples/README.md
View file @
fd49f1b0
#
# Build script e
xamples
#
CI E
xamples
-
[
Testing PHP
](
php.md
)
-
[
Test and deploy a Ruby application to Heroku
](
test-and-deploy-ruby-application-to-heroku.md
)
-
[
Test and deploy a Ruby application to Heroku
](
test-and-deploy-ruby-application-to-heroku.md
)
-
[
Test and deploy a Python application to Heroku
](
test-and-deploy-python-application-to-heroku.md
)
-
[
Test and deploy a Python application to Heroku
](
test-and-deploy-python-application-to-heroku.md
)
-
[
Test a Clojure application
](
test-clojure-application.md
)
-
[
Test a Clojure application
](
test-clojure-application.md
)
-
[
The .gitlab-ci.yml file for GitLab itself
](
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/.gitlab-ci.yml
)
-
[
Test your PHP applications
](
examples/php.md
)
-
[
Test and deploy Ruby applications to Heroku
](
examples/test-and-deploy-ruby-application-to-heroku.md
)
-
[
Test and deploy Python applications to Heroku
](
examples/test-and-deploy-python-application-to-heroku.md
)
-
[
Test Clojure applications
](
examples/test-clojure-application.md
)
-
[
Using `dpl` as deployment tool
](
deployment/README.md
)
-
Help your favorite programming language and GitLab by sending a merge request
with a guide for that language.
## Languages
## Outside the documentation
This is a list of languages you can test with GitLab CI. Each section has
comprehensive documentation and comes with a test repository hosted on
GitLab.com.
-
[
Testing PHP
](
php.md
)
-
[
Blost post about using GitLab CI for iOS projects
](
https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/
)
-
[
Repo's with examples for various languages
](
https://gitlab.com/groups/gitlab-examples
)
doc/ci/quick_start/README.md
View file @
fd49f1b0
...
@@ -223,20 +223,13 @@ You can access a builds badge image using following link:
...
@@ -223,20 +223,13 @@ You can access a builds badge image using following link:
http://example.gitlab.com/namespace/project/badges/branch/build.svg
http://example.gitlab.com/namespace/project/badges/branch/build.svg
```
```
Awesome! You started using CI in GitLab!
## Examples
## Examples
Visit the
[
examples README
][
examples
]
to see a list of examples using GitLab
Visit the
[
examples README
][
examples
]
to see a list of examples using GitLab
CI with various languages.
CI with various languages.
## Next steps
Awesome! You started using CI in GitLab!
Next you can look into doing more with the CI. Many people are using GitLab
to package, containerize, test and deploy software.
Visit our various languages examples at
<https://gitlab.com/groups/gitlab-examples>
.
[
runner-install
]:
https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tree/master#installation
[
runner-install
]:
https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tree/master#installation
[
blog-ci
]:
https://about.gitlab.com/2015/05/06/why-were-replacing-gitlab-ci-jobs-with-gitlab-ci-dot-yml/
[
blog-ci
]:
https://about.gitlab.com/2015/05/06/why-were-replacing-gitlab-ci-jobs-with-gitlab-ci-dot-yml/
[
examples
]:
../examples/README.md
[
examples
]:
../examples/README.md
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment