Skip to content

Commit

Permalink
Work around a misfiring lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Nov 13, 2021
1 parent 24d12bf commit 18255ad
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .cirrus.yml
Expand Up @@ -39,7 +39,9 @@ doc_test_task:
name: "Docs"
env:
# unused-braces is due to https://github.com/rust-lang/rust/issues/70717
RUSTFLAGS: "-D warnings -A unused-braces"
# proc_macro_derive_resolution_fallback is due to
# https://github.com/rust-lang/rust/issues/83583#issuecomment-968123016
RUSTFLAGS: "-D warnings -A unused-braces -A proc_macro_derive_resolution_fallback"
RUSTDOCFLAGS: "${RUSTFLAGS}"
container:
image: rustlang/rust:nightly
Expand All @@ -64,6 +66,11 @@ doc_test_task:

doc_tests_task:
name: "Documentation Tests"
env:
# proc_macro_derive_resolution_fallback is due to
# https://github.com/rust-lang/rust/issues/83583#issuecomment-968123016
RUSTFLAGS: "-D warnings -A proc_macro_derive_resolution_fallback"
RUSTDOCFLAGS: "${RUSTFLAGS}"
container:
image: rustlang/rust:nightly
cpu: 1
Expand Down

0 comments on commit 18255ad

Please sign in to comment.