diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-06-21 11:38:59 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-06-21 11:38:59 +0200 |
commit | 1abbfeb1cf9a845db9ca37b2f263b83092e0dffe (patch) | |
tree | 0ff337584d20929f1c854eec78e0e46537fcc978 | |
parent | 07bbbad5f954790ad79611821f12cc1d0d51d929 (diff) | |
download | servo-1abbfeb1cf9a845db9ca37b2f263b83092e0dffe.tar.gz servo-1abbfeb1cf9a845db9ca37b2f263b83092e0dffe.zip |
Fix the rustdoc build after recent changes
If passing --disable-minification, we must also enable unstable-options.
This was happening before, but by accident.
-rw-r--r-- | .github/workflows/docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e55e6a15704..8ae2fdefa72 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: --disable-minification + RUSTDOCFLAGS: -Z unstable-options --disable-minification - name: Upload docs run: | cd target/doc |