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?
Schneems
source share