TravisCI Allow Crashing When Two Elements Intersect

With Travis CI, I can resolve errors for languages ​​like Ruby 1.8.7:

matrix: allow_failures: - rvm: 1.8.7 

And I can resolve errors for certain environment variables

 matrix: allow_failures: - env: "RAILS_VERSION=master" 

What I want to do is allow the crossover of the environment variable and the Ruby version. how

 matrix: allow_failures: - env: "RAILS_VERSION=master" && rvm: 1.8.7 

Is it possible to do this with travis?

+7
source share
1 answer

I believe this is what you want:

 matrix: allow_failures: - env: "RAILS_VERSION=master" rvm: 1.8.7 
+17
source

All Articles