Constant project_init::includes::RUST_TRAVIS_CI [] [src]

pub const RUST_TRAVIS_CI: &'static str = "---\n\nlanguage: rust\nsudo: false\n\ncache: cargo\n\nos:\n  - linux\n  - osx\n  # FIXME wtf??\n  # - windows\n\nrust:\n  - nightly\n  - stable\n\nbefore_install:\n  - wget https://github.com/vmchale/tomlcheck/releases/download/0.1.0.0/tomlcheck-x86_64-unkown-linux-gnu\n  - chmod a+x tomlcheck-x86_64-unkown-linux-gnu\n\nscript:\n  # TODO verify this works + make it lint on linux\n  - if [ `uname` = \"Linux\" ]; then ./tomlcheck-x86_64-unkown-linux-gnu --file Cargo.toml ; fi\n  - cargo build\n  - cargo doc\n"