Skip to content

Commit e96bbe8

Browse files
author
vitalie
committed
Upgrade Ruby to v2.5.9
1 parent ef31fee commit e96bbe8

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
travis-listener

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.8
1+
2.5.9

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: ruby
22
dist: bionic
33

4-
rvm: 2.5.8
4+
rvm: 2.5.9
55

66
services:
77
- redis
@@ -12,6 +12,9 @@ env:
1212

1313
cache: bundler
1414

15+
before_install:
16+
- gem update --system 3.3.26 > /dev/null 2>&1
17+
1518
bundler_args: --without development --jobs 3 --retry 3 --deployment
1619

1720
jobs:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.5.8-slim
1+
FROM ruby:2.5.9-slim
22

33
LABEL maintainer Travis CI GmbH <[email protected]>
44

@@ -15,7 +15,7 @@ WORKDIR /app
1515
COPY Gemfile /app
1616
COPY Gemfile.lock /app
1717

18-
RUN gem install bundler -v '1.17.3'
18+
RUN gem update --system 3.3.26 > /dev/null 2>&1
1919
# throw errors if Gemfile has been modified since Gemfile.lock
2020
RUN bundle config --global frozen 1
2121
RUN bundle install --verbose --retry=3 --deployment --without development test

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
ruby '2.5.8'
3+
ruby '2.5.9'
44

55
gem 'travis-support', git: 'https://github.com/travis-ci/travis-support', ref: '113cff17fe383bb72fcfae3a97a8ce98c228342f'
66
gem 'travis-config', '~> 1.0.0'
@@ -21,7 +21,7 @@ gem 'metriks-librato_metrics'
2121

2222
gem 'yajl-ruby', '~> 1.4.0'
2323

24-
gem 'jemalloc', git: 'https://github.com/joshk/jemalloc-rb'
24+
gem 'jemalloc', git: 'https://github.com/travis-ci/jemalloc-rb', branch: 'jemalloc-5.0'
2525

2626
group :development, :test do
2727
gem 'pry'

Gemfile.lock

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
GIT
2-
remote: https://github.com/joshk/jemalloc-rb
3-
revision: 8c9dbef98f6bd4f96b371ec336b7e0c4fdc02d49
2+
remote: https://github.com/travis-ci/jemalloc-rb
3+
revision: e9528e26aff663efa2c124cdeca47700e389097d
4+
branch: jemalloc-5.0
45
specs:
5-
jemalloc (1.4.5)
6+
jemalloc (1.0.2)
67

78
GIT
89
remote: https://github.com/travis-ci/travis-support
@@ -114,7 +115,7 @@ DEPENDENCIES
114115
yajl-ruby (~> 1.4.0)
115116

116117
RUBY VERSION
117-
ruby 2.5.8p224
118+
ruby 2.5.9p229
118119

119120
BUNDLED WITH
120-
1.17.3
121+
2.3.26

0 commit comments

Comments
 (0)