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
Boxiang Sun
gitlab-ce
Commits
a4843ba9
Commit
a4843ba9
authored
Jun 04, 2019
by
Cindy Pallares 🦉
Committed by
Evan Read
Jun 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CI quickstart updates
parent
e5a74e0b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
doc/ci/quick_start/README.md
doc/ci/quick_start/README.md
+9
-1
No files found.
doc/ci/quick_start/README.md
View file @
a4843ba9
...
@@ -4,10 +4,15 @@ type: reference
...
@@ -4,10 +4,15 @@ type: reference
# Getting started with GitLab CI/CD
# Getting started with GitLab CI/CD
>**Note:** Starting from version 8.0, GitLab [Continuous Integration][ci] (CI)
NOTE:
**Note:**
Starting from version 8.0, GitLab
[
Continuous Integration
][
ci
]
(CI)
is fully integrated into GitLab itself and is [enabled] by default on all
is fully integrated into GitLab itself and is [enabled] by default on all
projects.
projects.
NOTE:
**Note:**
Please keep in mind that only project Maintainers and Admin users have
the permissions to access a project's settings.
GitLab offers a
[
continuous integration
][
ci
]
service. If you
GitLab offers a
[
continuous integration
][
ci
]
service. If you
[
add a `.gitlab-ci.yml` file
][
yaml
]
to the root directory of your repository,
[
add a `.gitlab-ci.yml` file
][
yaml
]
to the root directory of your repository,
and configure your GitLab project to use a [Runner], then each commit or
and configure your GitLab project to use a [Runner], then each commit or
...
@@ -44,6 +49,7 @@ This guide assumes that you have:
...
@@ -44,6 +49,7 @@ This guide assumes that you have:
-
A working GitLab instance of version 8.0+r or are using
-
A working GitLab instance of version 8.0+r or are using
[
GitLab.com
](
https://gitlab.com
)
.
[
GitLab.com
](
https://gitlab.com
)
.
-
A project in GitLab that you would like to use CI for.
-
A project in GitLab that you would like to use CI for.
-
Maintainer or owner access to the project
Let's break it down to pieces and work on solving the GitLab CI puzzle.
Let's break it down to pieces and work on solving the GitLab CI puzzle.
...
@@ -77,6 +83,8 @@ You need to create a file named `.gitlab-ci.yml` in the root directory of your
...
@@ -77,6 +83,8 @@ You need to create a file named `.gitlab-ci.yml` in the root directory of your
repository. Below is an example for a Ruby on Rails project.
repository. Below is an example for a Ruby on Rails project.
```
yaml
```
yaml
image
:
"
ruby:2.5"
before_script
:
before_script
:
-
apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
-
apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
-
ruby -v
-
ruby -v
...
...
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