Skip to content

Travis CI fixes #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ rust:
- stable

before_script:
# Travis installs rust with a non-default "minimal" profile, and advises us
# to add clippy manually:
- rustup component add clippy
# Unfortunately, this method often breaks on the nightly channel, where the
# most recent build might not have all the optional components.
# We explicitly specify `--profile default` to obtain the most recent nightly
# that has rustfmt (we don't care if it's a week old, as we need it only for
# an experimental flag):
- rustup toolchain install nightly --profile default

- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
- export PATH=$HOME/.cargo/bin:$PATH
# `cargo install` fails if the specified binary is already installed, and
Expand All @@ -33,13 +43,9 @@ before_script:
# rebuilds from scratch, ignoring the cache entirely.
#
# [0]: https://github.com/rust-lang/cargo/issues/2082
- cargo install cargo-update || echo "cargo-update already installed"
- cargo install cargo-travis || echo "cargo-travis already installed"
- cargo install cargo-update || echo "cargo-update already installed" # for `cargo install-update`
- cargo install cargo-travis || echo "cargo-travis already installed" # for `cargo coveralls`
- cargo install-update -a # updates cargo-travis, if the cached version is outdated
- rustup component add clippy
# The license_template_path setting we use to verify copyright headers is
# only available on the nightly rustfmt.
- rustup toolchain install nightly && rustup component add --toolchain nightly rustfmt

script:
# Clippy must be run first, as its lints are only triggered during
Expand All @@ -50,6 +56,8 @@ script:
- travis-cargo build
- travis-cargo test
- travis-cargo test -- all-features
# The license_template_path setting we use to verify copyright headers is
# only available on the nightly rustfmt.
- cargo +nightly fmt -- --check --config-path <(echo 'license_template_path = "HEADER"')

after_success:
Expand Down
2 changes: 1 addition & 1 deletion examples/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn main() {
println!("Parsing from file '{}' using {:?}", &filename, dialect);
let contents = fs::read_to_string(&filename)
.unwrap_or_else(|_| panic!("Unable to read the file {}", &filename));
let without_bom = if contents.chars().nth(0).unwrap() as u64 != 0xfeff {
let without_bom = if contents.chars().next().unwrap() as u64 != 0xfeff {
contents.as_str()
} else {
let mut chars = contents.chars();
Expand Down