File tree 2 files changed +29
-8
lines changed
2 files changed +29
-8
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,6 @@ platforms:
21
21
- name : ubuntu-14.04
22
22
driver :
23
23
image : ubuntu:14.04
24
- - name : ubuntu-15.10
25
- driver :
26
- image : ubuntu:15.10
27
- pid_one_command : /bin/systemd
28
24
- name : ubuntu-16.04
29
25
driver :
30
26
image : ubuntu:16.04
@@ -66,6 +62,19 @@ platforms:
66
62
- RUN /usr/bin/apt-get update
67
63
- RUN /usr/bin/apt-get install -y procps
68
64
pid_one_command : /bin/systemd
65
+ - name : fedora-23
66
+ driver :
67
+ image : fedora:23
68
+ pid_one_command : /usr/lib/systemd/systemd
69
+ # Chef needs yum package for now: https://github.com/chef/chef/issues/3201
70
+ intermediate_instructions :
71
+ - RUN dnf install -y yum
72
+ - name : fedora-24
73
+ driver :
74
+ image : fedora:24
75
+ pid_one_command : /usr/lib/systemd/systemd
76
+ intermediate_instructions :
77
+ - RUN dnf install -y yum
69
78
70
79
suites :
71
80
- name : default
Original file line number Diff line number Diff line change @@ -20,9 +20,21 @@ matrix:
20
20
# integration tests
21
21
- rvm : 2.3.1
22
22
bundler_args : " --without guard tools"
23
- script : bundle exec rake test:integration OS='centos oracle'
24
- gemfile : Gemfile
23
+ script : bundle exec rake $SUITE
24
+ env : SUITE=test:integration OS='centos'
25
25
- rvm : 2.3.1
26
26
bundler_args : " --without guard tools"
27
- script : bundle exec rake test:integration OS='ubuntu debian'
28
- gemfile : Gemfile
27
+ script : bundle exec rake $SUITE
28
+ env : SUITE=test:integration OS='oracle'
29
+ - rvm : 2.3.1
30
+ bundler_args : " --without guard tools"
31
+ script : bundle exec rake $SUITE
32
+ env : SUITE=test:integration OS='ubuntu'
33
+ - rvm : 2.3.1
34
+ bundler_args : " --without guard tools"
35
+ script : bundle exec rake $SUITE
36
+ env : SUITE=test:integration OS='debian'
37
+ - rvm : 2.3.1
38
+ bundler_args : " --without guard tools"
39
+ script : bundle exec rake $SUITE
40
+ env : SUITE=test:integration OS='fedora'
You can’t perform that action at this time.
0 commit comments