crate-ci / azure-pipelines

Easy continuous integration for Rust projects with Azure Pipelines
MIT License
88 stars 24 forks source link

Add nightly-only stages.yml #59

Closed jonhoo closed 5 years ago

jonhoo commented 5 years ago

Projects that only run on nightly have slightly different needs from those that run on stable + beta. In particular, they do not run on stable + beta, and they want failures on nightly to still count as a CI failure. stages.yml cannot be configured that way, so we add a new nigthly-stages.yml that caters specifically to the needs of nightly-only projects.

Fixes #58.

jonhoo commented 5 years ago

We really need https://github.com/rust-lang/rustup.rs/issues/2005 for this sadly. Or nightlies that always have clippy+rustfmt. I'll disable clippy for now.

codecov-io commented 5 years ago

Codecov Report

Merging #59 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #59   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           1      1           
  Lines           7      7           
=====================================
  Hits            7      7

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 1833e53...af99517. Read the comment docs.

Ralith commented 5 years ago

Thanks! :D