From 55d5d49f1c676837972ebf09c44a8663acdab5f9 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Tue, 29 Jul 2014 16:23:29 +0900 Subject: [PATCH] updated .travis.yml to use `cargo doc` for doc generation. --- .gitignore | 1 - .travis.yml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2b0e81e..eb5a316 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -doc target diff --git a/.travis.yml b/.travis.yml index 5738de3..5ce94bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,9 @@ before_install: script: - cargo build - cargo test - - rustdoc src/lib.rs + - cargo doc branches: only: - master after_script: - - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh + - cd target && curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh