2015-08-25 21:42:46 -04:00
|
|
|
# Quick Start
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
Starting from version 8.0, GitLab Continuous Integration (CI) is fully
|
|
|
|
integrated into GitLab itself and is enabled by default on all projects.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
This guide assumes that you:
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
- have a working GitLab instance of version 8.0 or higher or are using
|
|
|
|
[GitLab.com](https://gitlab.com/users/sign_in)
|
|
|
|
- have a project in GitLab that you would like to use CI for
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
In brief, the steps needed to have a working CI can be summed up to:
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
1. Create a new project
|
|
|
|
1. Add `.gitlab-ci.yml` to the git repository and push to GitLab
|
|
|
|
1. Configure a Runner
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
From there on, on every push to your git repository the build will be
|
2015-11-10 14:16:12 -05:00
|
|
|
automagically started by the Runner and will appear under the project's
|
2015-11-09 20:26:51 -05:00
|
|
|
`/builds` page.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Now, let's break it down to pieces and work on solving the GitLab CI puzzle.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
## Creating a `.gitlab-ci.yml` file
|
2015-11-06 03:43:28 -05:00
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
Before you create `.gitlab-ci.yml` let's first explain in brief what this is
|
|
|
|
all about.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
### What is `.gitlab-ci.yml`
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
The `.gitlab-ci.yml` file is where you configure what CI does with your project.
|
|
|
|
It lives in the root of your repository.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
On any push to your repository, GitLab will look for the `.gitlab-ci.yml`
|
|
|
|
file and start builds on _Runners_ according to the contents of the file,
|
|
|
|
for that commit.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Because `.gitlab-ci.yml` is in the repository, it is version controlled,
|
|
|
|
old versions still build succesfully, forks can easily make use of CI,
|
|
|
|
branches can have separate builds and you have a single source of truth for CI.
|
|
|
|
You can read more about the reasons why we are using `.gitlab-ci.yml`
|
|
|
|
[in our blog about it][blog-ci].
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
**Note:** `.gitlab-ci.yml` is a [YAML](https://en.wikipedia.org/wiki/YAML) file
|
|
|
|
so you have to pay extra attention to the identation. Always use spaces, not
|
|
|
|
tabs.
|
2015-11-05 10:53:05 -05:00
|
|
|
|
|
|
|
### Creating a simple `.gitlab-ci.yml` file
|
|
|
|
|
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
before_script:
|
2015-11-05 10:53:05 -05:00
|
|
|
- apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
|
|
|
|
- ruby -v
|
|
|
|
- which ruby
|
|
|
|
- gem install bundler --no-ri --no-rdoc
|
|
|
|
- bundle install --jobs $(nproc) "${FLAGS[@]}"
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
rspec:
|
|
|
|
script:
|
|
|
|
- bundle exec rspec
|
|
|
|
|
|
|
|
rubocop:
|
|
|
|
script:
|
|
|
|
- bundle exec rubocop
|
|
|
|
```
|
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
This is the simplest possible build configuration that will work for most Ruby
|
|
|
|
applications:
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
1. Define two jobs `rspec` and `rubocop` (the names are arbitrary) with
|
|
|
|
different commands to be executed.
|
2015-11-05 10:53:05 -05:00
|
|
|
1. Before every job, the commands defined by `before_script` are executed.
|
|
|
|
|
|
|
|
The `.gitlab-ci.yml` file defines sets of jobs with constraints of how and when
|
2015-12-01 03:05:24 -05:00
|
|
|
they should be run. The jobs are defined as top-level elements with a name (in
|
|
|
|
our case `rspec` and `rubocop`) and always have to contain the `script` keyword.
|
|
|
|
Jobs are used to create builds, which are then picked by
|
|
|
|
[Runners](../runners/README.md) and executed within the environment of the Runner.
|
2015-11-05 10:53:05 -05:00
|
|
|
|
|
|
|
What is important is that each job is run independently from each other.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
If you want to check whether your `.gitlab-ci.yml` file is valid, there is a
|
|
|
|
Lint tool under the page `/ci/lint` of your GitLab instance. You can also find
|
2015-12-01 03:05:24 -05:00
|
|
|
the link under **Settings > CI settings** in your project.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
For more information and a complete `.gitlab-ci.yml` syntax, please check
|
|
|
|
[the documentation on .gitlab-ci.yml](../yaml/README.md).
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
### Push `.gitlab-ci.yml` to GitLab
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Once you've created `.gitlab-ci.yml`, you should add it to your git repository
|
|
|
|
and push it to GitLab.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
```bash
|
|
|
|
git add .gitlab-ci.yml
|
2015-11-05 10:53:05 -05:00
|
|
|
git commit -m "Add .gitlab-ci.yml"
|
2015-08-25 21:42:46 -04:00
|
|
|
git push origin master
|
|
|
|
```
|
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Now if you go to the **Builds** page you will see that the builds are pending.
|
|
|
|
|
|
|
|
You can also go to the **Commits** page and notice the little clock icon next
|
|
|
|
to the commit SHA.
|
|
|
|
|
|
|
|
![New commit pending](img/new_commit.png)
|
|
|
|
|
|
|
|
Clicking on the clock icon you will be directed to the builds page for that
|
|
|
|
specific commit.
|
|
|
|
|
|
|
|
![Single commit builds page](img/single_commit_status_pending.png)
|
|
|
|
|
|
|
|
Notice that there are two jobs pending which are named after what we wrote in
|
|
|
|
`.gitlab-ci.yml`. The red triangle indicates that there is no Runner configured
|
|
|
|
yet for these builds.
|
|
|
|
|
2015-11-10 14:16:12 -05:00
|
|
|
The next step is to configure a Runner so that it picks the pending jobs.
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
## Configuring a Runner
|
2015-11-05 10:53:05 -05:00
|
|
|
|
|
|
|
In GitLab, Runners run the builds that you define in `.gitlab-ci.yml`.
|
|
|
|
A Runner can be a virtual machine, a VPS, a bare-metal machine, a docker
|
|
|
|
container or even a cluster of containers. GitLab and the Runners communicate
|
|
|
|
through an API, so the only needed requirement is that the machine on which the
|
2016-02-18 09:07:13 -05:00
|
|
|
Runner is configured to have Internet access.
|
2015-11-05 10:53:05 -05:00
|
|
|
|
|
|
|
A Runner can be specific to a certain project or serve multiple projects in
|
|
|
|
GitLab. If it serves all projects it's called a _Shared Runner_.
|
|
|
|
|
|
|
|
Find more information about different Runners in the
|
|
|
|
[Runners](../runners/README.md) documentation.
|
|
|
|
|
|
|
|
You can find whether any Runners are assigned to your project by going to
|
2015-12-01 03:05:24 -05:00
|
|
|
**Settings > Runners**. Setting up a Runner is easy and straightforward. The
|
|
|
|
official Runner supported by GitLab is written in Go and can be found at
|
2015-11-05 10:53:05 -05:00
|
|
|
<https://gitlab.com/gitlab-org/gitlab-ci-multi-runner>.
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
In order to have a functional Runner you need to follow two steps:
|
2015-11-05 10:53:05 -05:00
|
|
|
|
|
|
|
1. [Install it][runner-install]
|
|
|
|
2. [Configure it](../runners/README.md#registering-a-specific-runner)
|
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
Follow the links above to set up your own Runner or use a Shared Runner as
|
|
|
|
described in the next section.
|
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
For other types of unofficial Runners written in other languages, see the
|
|
|
|
[instructions for the various GitLab Runners](https://about.gitlab.com/gitlab-ci/#gitlab-runner).
|
|
|
|
|
|
|
|
Once the Runner has been set up, you should see it on the Runners page of your
|
2015-12-01 03:05:24 -05:00
|
|
|
project, following **Settings > Runners**.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
![Activated runners](img/runners_activated.png)
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
### Shared Runners
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
If you use [GitLab.com](https://gitlab.com/) you can use **Shared Runners**
|
|
|
|
provided by GitLab Inc.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
These are special virtual machines that run on GitLab's infrastructure and can
|
|
|
|
build any project.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
To enable **Shared Runners** you have to go to your project's
|
2015-12-01 03:05:24 -05:00
|
|
|
**Settings > Runners** and click **Enable shared runners**.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
[Read more on Shared Runners](../runners/README.md).
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
## Seeing the status of your build
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
After configuring the Runner succesfully, you should see the status of your
|
|
|
|
last commit change from _pending_ to either _running_, _success_ or _failed_.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
You can view all builds, by going to the **Builds** page in your project.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
![Commit status](img/builds_status.png)
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
By clicking on a Build ID, you will be able to see the log of that build.
|
|
|
|
This is important to diagnose why a build failed or acted differently than
|
|
|
|
you expected.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
![Build log](img/build_log.png)
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
You are also able to view the status of any commit in the various pages in
|
|
|
|
GitLab, such as **Commits** and **Merge Requests**.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2016-02-08 07:17:29 -05:00
|
|
|
## Builds badge
|
|
|
|
|
|
|
|
You can access a builds badge image using following link:
|
|
|
|
|
|
|
|
```
|
2016-02-09 07:10:16 -05:00
|
|
|
http://example.gitlab.com/namespace/project/badges/branch/build.svg
|
2016-02-08 07:17:29 -05:00
|
|
|
```
|
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
## Next steps
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Awesome! You started using CI in GitLab!
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
Next you can look into doing more with the CI. Many people are using GitLab
|
|
|
|
to package, containerize, test and deploy software.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-12-01 03:05:24 -05:00
|
|
|
Visit our various languages examples at <https://gitlab.com/groups/gitlab-examples>.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-11-05 10:53:05 -05:00
|
|
|
[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/
|