Skip to content

Commit

Permalink
Run doctests with unstable enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Dec 4, 2024
1 parent b8f3cd4 commit f193e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ fn run_doc_tests(workspace: &Path, args: ExampleArgs) -> Result<()> {
// Determine the appropriate build target, and cargo features for the given
// package and chip:
let target = target_triple(args.package, &chip)?;
let features = vec![chip.to_string()];
let features = vec![chip.to_string(), "unstable".to_string()];

// We need `nightly` for building the doc tests, unfortunately:
let toolchain = if chip.is_xtensa() { "esp" } else { "nightly" };
Expand Down

0 comments on commit f193e8a

Please sign in to comment.