Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f87b7b8

Browse files
committedJan 29, 2014
WIP
1 parent 6ff4d55 commit f87b7b8

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed
 

‎.travis.yml

+29-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,32 @@ language: ruby
22

33
cache: bundler
44

5-
rvm:
6-
- 1.8.7
7-
- 1.9.3
8-
- 2.0.0
9-
- 2.1.0
10-
- rbx
11-
- jruby
5+
matrix:
6+
include:
7+
- rvm: 2.1.0
8+
env: RUN=default
9+
10+
- rvm: 1.8.7
11+
env: RUN=rspec
12+
13+
- rvm: 1.9.3
14+
env: RUN=rspec
15+
16+
- rvm: 2.0.0
17+
env: RUN=rspec
18+
19+
- rvm: rbx
20+
env: RUN=rspec
21+
22+
- rvm: jruby
23+
env: RUN=rspec
24+
25+
allow_failures:
26+
- rvm: 1.8.7
27+
- rvm: 1.9.3
28+
- rvm: 2.0.0
29+
- rvm: rbx
30+
- rvm: jruby
1231

1332
before_install:
1433
- git submodule update --init
@@ -20,5 +39,8 @@ before_install:
2039
- gem update --system 2.1.11
2140
- gem --version
2241

42+
script:
43+
- "bundle exec rake $RUN"
44+
2345
notifications:
2446
irc: "irc.freenode.org#opal"

0 commit comments

Comments
 (0)
Please sign in to comment.