From ab7d70edf6c467825671681d9520781ac4d1a819 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 13 Dec 2023 17:17:31 +0100 Subject: [PATCH] Re-enable minification to fix the doc build 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 de8af8715686..81b9f3e666dd 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