Emit feature flag tags in CI doc build, too

Jonas Schäfer created

This doesn't do anything useful yet, because we can't build with
--all-features because of the conflicting rustls/openssl features...

Change summary

.gitlab-ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

.gitlab-ci.yml 🔗

@@ -41,7 +41,7 @@ variables:
   stage: test
   script:
     - echo "Building docs to CI_DOC_TARGET=$CI_DOC_TARGET"
-    - cargo +nightly doc --no-deps -Zrustdoc-map
+    - RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps -Zrustdoc-map
     - apt install -y rsync openssh-client
     - mkdir -p $HOME/.ssh
     - echo -e "Host docs\n\tHostname docs.xmpp.rs\n\tPort 1312\n\tUser xmpp-rs\n\tStrictHostKeyChecking no" > $HOME/.ssh/config