diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-07-18 13:13:49 -0700 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-07-18 13:13:49 -0700 |
commit | d792af6702580776e8c26a500d69aacb79a8500e (patch) | |
tree | b056629cf3141e0b8cbd65bfacaabeee52d02e30 | |
parent | 10ea03c1f4bef3009616686b79fd17778daf0133 (diff) |
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.
-rwxr-xr-x | ci/assert-docs.sh | 2 |
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" |