cargo/.travis.yml
Alex Crichton 1271bb4de0 Delete the old docs, lift up the new
This commit deletes the old documentation now that the "official source" is the
main book. The book is now lifted up directly into `src/doc` instead of
`src/doc/book`.

The CI no longer builds documentation and has been updated to just run mdbook to
make sure there's no errors. The documentation will actually get published in
the rust-lang/rust repo
2018-01-05 11:10:55 -08:00

55 lines
1.1 KiB
YAML

language: rust
rust: stable
sudo: required
dist: trusty
git:
depth: 1
# Using 'cache: cargo' to cache target/ and all of $HOME/.cargo/
# doesn't work well: the cache is large and it takes several minutes
# to move it to and from S3. So instead we only cache the mdbook
# binary.
cache:
directories:
- $HOME/.cargo/bin/
matrix:
include:
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
- env: TARGET=x86_64-apple-darwin
ALT=i686-apple-darwin
os: osx
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
rust: beta
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
rust: nightly
install:
- mdbook --help || cargo install mdbook --force
script:
- cargo test
- cargo doc --no-deps
- (cd src/doc && mdbook build --no-create --dest-dir ../../target/doc)
exclude:
- rust: stable
before_script:
- rustup target add $ALT
script:
- cargo test
notifications:
email:
on_success: never
addons:
apt:
packages:
- gcc-multilib