/
germanubis
/
rust-csv
Обзор
Документация
Войти
/
germanubis
/
rust-csv
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ci/script.sh
26 строк
613 B
Robert-André Mauchin
deps: bump arrayvec to 0.5
13 фев 2020, 17:13
13 фев 2020, 17:13
9f5455b
Код
Авторство
О чём код?
#!/bin/sh set -ex cargo build --verbose cargo doc --verbose # Our dev dependencies want newer versions of Rust. Instead of bumping our # MSRV, we just don't test on our MSRV. if [ "$TRAVIS_RUST_VERSION" = "1.33.0" ]; then exit 0 fi cargo test --verbose cargo test --verbose --manifest-path csv-core/Cargo.toml cargo test --verbose --manifest-path csv-index/Cargo.toml if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then rustup component add rustfmt cargo fmt -- --check ci/check-copy cookbook ci/check-copy tutorial fi if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo bench --verbose --no-run fi