xetra11
xetra11

Reputation: 8885

Build a Rust project on Travis CI with a specific nightly version

I'm about to build a Rust project but I want to build it with Rust nightly 1.11.0.

At the moment I'm only able to do so:

language: rust
rust: 
  - nightly 
  - 1.11.0

which builds nightly (latest version 1.13.0 which breaks my build) and the stable 1.11.0 which I cannot use either because I need nightly 1.11.0!

So any way I can set this up? I tried - nightly 1.11.0 but that seems to be a wrong config.

Upvotes: 0

Views: 41

Answers (0)

Related Questions