rust-cookbook/ci/install_deps.sh
Ivan Tham b61c8e588a
Update to edition 2018 (#565)
* Update to edition 2018

Update mdbook to 0.3.5

Command:
sed -i '/extern crate/ {N;s/\n$//}' src/**.md; sed -i 's/extern crate error_chain;/use error_chain::error_chain;/; s/extern crate lazy_static;/use lazy_static::lazy_static;/; s/extern crate bitflags;/use bitflags::bitflags;/; s/extern crate serde_json;/ use serde_json::json;/; s/extern crate serde_derive;/use serde::{Serialize, Deserialize};/; /macro_use/d; /extern crate/ d; s/```rust/```rust,edition2018/; s/bail!/error_chain::&/; s/\(debug\|info\|warn\|error\)!/log::&/;' src/**.md

Fix #530

* Update rand-dist.md

* Fixes #569

* dump syslog

version 4 depends on error-chain v 0.11 and version 5 depends on v 0.12 
!!!!

Co-authored-by: Andrew Gauger <andygauge@gmail.com>
2020-05-31 17:26:32 -07:00

24 lines
471 B
Bash
Executable file

#!/bin/bash
set -o errexit -o nounset
echo "Running $0"
if [ -z "${TRAVIS_BRANCH:-}" ]; then
echo "This script may only be run from Travis!"
exit 1
fi
if [[ "${CONTENT_TESTS:-}" == 1 ]]; then
echo "Installing additional dependencies"
if [[ "${CONTENT_TESTS_LINKS:-}" == 1 ]]; then
pyenv install 3.6.0
pyenv local 3.6.0
pip3 install --user link-checker==0.1.0
fi
cargo install mdbook --vers '0.3.5' --debug
fi
exit 0