File tree Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM ruby:2.4.2 -alpine
1
+ FROM ruby:2.5.1 -alpine
2
2
3
3
RUN apk add --no-cache git
4
4
Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- test-2-4 : &test
3
+ test-2-5 : &test
4
4
docker :
5
5
- image : tmaier/docker-compose
6
6
environment :
7
7
COMPOSE_FILE : docker-compose.yml:docker-compose.ci.yml
8
- SERVICE_NAME : ruby-2-4
8
+ SERVICE_NAME : ruby-2-5
9
9
steps :
10
10
- checkout
11
11
- setup_remote_docker :
21
21
docker start project
22
22
docker-compose build $SERVICE_NAME
23
23
- run : docker-compose run $SERVICE_NAME bin/ci
24
+ test-2-4 :
25
+ << : *test
26
+ docker :
27
+ - image : tmaier/docker-compose
28
+ environment :
29
+ COMPOSE_FILE : docker-compose.yml:docker-compose.ci.yml
30
+ SERVICE_NAME : ruby-2-4
24
31
test-2-3 :
25
32
<< : *test
26
33
docker :
@@ -47,6 +54,7 @@ workflows:
47
54
version : 2
48
55
test :
49
56
jobs :
57
+ - test-2-5
50
58
- test-2-4
51
59
- test-2-3
52
60
- test-2-2
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ services:
3
3
app : &app
4
4
volumes :
5
5
- project:/app
6
+ ruby-2-5 :
7
+ << : *app
6
8
ruby-2-4 :
7
9
<< : *app
8
10
ruby-2-3 :
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ services:
6
6
- $HOME/.gitconfig:/home/ruby/.gitconfig:ro
7
7
- $HOME/.ssh:/home/ruby/.ssh:ro
8
8
- $HOME/.gem:/home/ruby/.gem
9
+ ruby-2-5 :
10
+ << : *app
9
11
ruby-2-4 :
10
12
<< : *app
11
13
ruby-2-3 :
Original file line number Diff line number Diff line change @@ -5,26 +5,32 @@ services:
5
5
context : .
6
6
dockerfile : Dockerfile.development
7
7
args :
8
- RUBY_VERSION : 2.4.2
8
+ RUBY_VERSION : 2.5.0
9
9
environment :
10
10
LANGUAGE_SERVER_RUBY_REMOTE_ROOT : $PWD
11
11
volumes :
12
12
- vendor:/vendor
13
13
- home:/home/ruby
14
+ ruby-2-5 :
15
+ << : *app
14
16
ruby-2-4 :
15
17
<< : *app
18
+ build :
19
+ << : *app-build
20
+ args :
21
+ RUBY_VERSION : 2.4.3
16
22
ruby-2-3 :
17
23
<< : *app
18
24
build :
19
25
<< : *app-build
20
26
args :
21
- RUBY_VERSION : 2.3.4
27
+ RUBY_VERSION : 2.3.6
22
28
ruby-2-2 :
23
29
<< : *app
24
30
build :
25
31
<< : *app-build
26
32
args :
27
- RUBY_VERSION : 2.2.7
33
+ RUBY_VERSION : 2.2.9
28
34
volumes :
29
35
home :
30
36
vendor :
You can’t perform that action at this time.
0 commit comments