From 229224d078fba94ff3f3f6f22f7610c7bada10d9 Mon Sep 17 00:00:00 2001 From: Karolin Varner Date: Mon, 22 May 2023 23:12:23 +0200 Subject: [PATCH] fix: Restore QC/doc CI job to operation https://github.com/rosenpass/rosenpass/issues/62 https://github.com/rust-lang/rust/issues/108378 --- .github/workflows/qc.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qc.yaml b/.github/workflows/qc.yaml index 6e9cf252..e4c6dc86 100644 --- a/.github/workflows/qc.yaml +++ b/.github/workflows/qc.yaml @@ -62,4 +62,7 @@ jobs: - run: rustup component add clippy - name: Install libsodium run: sudo apt-get install -y libsodium-dev - - run: RUSTDOCFLAGS="-D warnings" cargo doc --document-private-items + # `--no-deps` used as a workaround for a rust compiler bug. See: + # - https://github.com/rosenpass/rosenpass/issues/62 + # - https://github.com/rust-lang/rust/issues/108378 + - run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items