summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-07-19 16:09:07 -0700
committerGitHub <noreply@github.com>2017-07-19 16:09:07 -0700
commit87bd3b9d7d9ea503c3b45a2947d5485eeb836737 (patch)
treeb056629cf3141e0b8cbd65bfacaabeee52d02e30
parent10ea03c1f4bef3009616686b79fd17778daf0133 (diff)
parentd792af6702580776e8c26a500d69aacb79a8500e (diff)
Auto merge of #825 - fitzgen:ci-assert-dosc, r=emilio
Speed up CI runs by only `cargo check`ing for docs Running `cargo check --features testing_only_docs` will catch missing doc comments, and we can avoid doing a full build. r? @emilio
-rwxr-xr-xci/assert-docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/assert-docs.sh b/ci/assert-docs.sh
index d5757403..2bbc35af 100755
--- a/ci/assert-docs.sh
+++ b/ci/assert-docs.sh
@@ -3,4 +3,4 @@
set -xeu
cd "$(dirname "$0")/.."
-cargo build --features "$BINDGEN_FEATURES testing_only_docs"
+cargo check --features "$BINDGEN_FEATURES testing_only_docs"