Skip certain combination of os and version in travis-ci

Viewed 112

On Travis-ci, I would like to skip some of the combinations of os and versions.

Specifically, suppose I have an R project. My current ".travis.yml" looks like

language: r

r:
  - oldrel
  - release
  - devel  

os:
  - linux
  - osx

But I would like to skip devel with osx (since devel is not quite ready for this platform yet). Can I do this?

1 Answers
Related