From 01013b9ea8b3c5527a01e093a2c3b5b938c91186 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 13 Dec 2023 17:57:43 +0100 Subject: [PATCH] Re-enable minification to fix the doc build (#30871) Disable isn't possible for non-nightly versions of Rust, so this is currently breaking the doc build. In addition, it seems that the original issue that triggered this change [^1] is now fixed. [^1]: https://github.com/rust-lang/rust/issues/58849 --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index de8af871568..81b9f3e666d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,7 +23,7 @@ jobs: - name: Compile docs run: python3 ./mach doc env: - RUSTDOCFLAGS: -Z unstable-options --disable-minification --document-private-items + RUSTDOCFLAGS: --document-private-items - name: Upload docs run: | cd target/doc