diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-07 15:18:46 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-09-30 13:45:15 +0200 |
commit | 9c0b965d817c105565152452a09362468cfda8ca (patch) | |
tree | 990ccdc329bb69ff50b9f4911fe44dd47aaa8201 /.gitlab-ci.yml | |
parent | 6591b594d4907be0c235a9c05e40ac5bbb995d94 (diff) | |
download | gitlab-ce-9c0b965d817c105565152452a09362468cfda8ca.tar.gz |
Use custom Ruby images to test builds
It allows us to remove redundant steps of installing required dependencies for every build.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a11c4705e82..43307a5e7db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: "ruby:2.3.1" +image: "registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.3" cache: key: "ruby-231" @@ -141,7 +141,7 @@ spinach 9 10: *spinach-knapsack # Execute all testing suites against Ruby 2.1 .ruby-21: &ruby-21 - image: "ruby:2.1" + image: "registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.1" <<: *use-db only: - master |