I maintain a repository that targets the stable compiler. When I setup a Travis build, I followed the online documentation that says:
The Rust team appreciates testing against the beta and nightly channels, even if you are only targeting stable.
So being a good rust citizen, I setup my build to help catch regressions. Lo and behold, a few weeks after doing that, I caught a regression and reported it to the bug tracker.
The bug was quickly fixed and now my code runs on nightly, but still not beta since the change has not made it that far yet.
My question is, is there some way to setup Travis so that if either beta or nightly passes, the entire build passes? Right now it fails if beta fails.
It's nice to catch regressions and everything, but it would be even better to not have to wait for a change to make beta before my working build shows green again.