diff options
author | Connor Shea <connor.james.shea@gmail.com> | 2016-06-17 09:48:46 -0600 |
---|---|---|
committer | Connor Shea <connor.james.shea@gmail.com> | 2016-06-17 09:48:46 -0600 |
commit | b8a8f84842786f365d6870bc6909d49d3bfd96e6 (patch) | |
tree | 19aa5b8039c8bdff5136c87780f832715a322ee5 /.gitlab-ci.yml | |
parent | 13883a56b87d1245a00c7840f22a5461621889ba (diff) | |
download | gitlab-ce-b8a8f84842786f365d6870bc6909d49d3bfd96e6.tar.gz |
Add master-only limitation.
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 1cd25ebc0a1..219077d79b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,8 +132,8 @@ spinach 9 10: *spinach-knapsack # Execute all testing suites against Ruby 2.3 .ruby-23: &ruby-23 image: "ruby:2.3" - # only: - # - master + only: + - master .rspec-knapsack-ruby23: &rspec-knapsack-ruby23 <<: *rspec-knapsack |