Skip to content

Commit ca24c14

Browse files
committed
👷 GitLab CI updates
1 parent 1777b96 commit ca24c14

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.gitlab-ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ variables:
88
K_SOUP_COV_DEBUG: true
99
K_SOUP_COV_DO: true
1010
K_SOUP_COV_HARD: true
11-
K_SOUP_COV_MIN_BRANCH: 46
12-
K_SOUP_COV_MIN_LINE: 93
11+
K_SOUP_COV_MIN_BRANCH: 98
12+
K_SOUP_COV_MIN_LINE: 100
1313
K_SOUP_COV_VERBOSE: true
1414
K_SOUP_COV_FORMATTERS: "html,xml,rcov,lcov,json,tty"
1515
K_SOUP_COV_MULTI_FORMATTERS: true
@@ -41,7 +41,10 @@ workflow:
4141
image: ruby:${RUBY_VERSION}
4242
stage: test
4343
script:
44-
- gem update --system > /dev/null 2>&1
44+
# Because we support EOL Ruby still...
45+
- gem install rubygems-update -v 3.5.23
46+
# Actually updates both RubyGems and Bundler!
47+
- update_rubygems
4548
- bundle config --local path vendor
4649
- bundle install
4750
- bundle exec rake test
@@ -55,9 +58,9 @@ workflow:
5558
stage: test
5659
script:
5760
# Because we support EOL Ruby still...
58-
- gem install rubygems-update -v 3.4.22 > /dev/null 2>&1
61+
- gem install rubygems-update -v 3.4.22
5962
# Actually updates both RubyGems and Bundler!
60-
- update_rubygems > /dev/null 2>&1
63+
- update_rubygems
6164
- bundle config --local path vendor
6265
- bundle install
6366
- bundle exec rake test

0 commit comments

Comments
 (0)