Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Print clippy version on Travis #32

@0xazure

Description

@0xazure

To help better debug issues like those we experienced in #24, we should print the versions of any extra tools we add to CI so we can compare version numbers and build hashes.

Elsewhere in the logs Travis prints out version numbers of the tools:

$ rustc --version
rustc 1.31.0-beta.5 (bf00632e3 2018-11-08)
$ rustup --version
rustup 1.14.0 (1e51b07cc 2018-10-04)
$ cargo --version
cargo 1.31.0-beta (efb7972a0 2018-10-24)

so we should too.

To do this for clippy, we need to run cargo clippy --version after a successful installation in our Travis config:

supernova/.travis.yml

Lines 19 to 20 in f4838f9

before_script:
- if [[ "$TRAVIS_RUST_VERSION" == "stable" || "$TRAVIS_RUST_VERSION" == "nightly" ]]; then rustup component add clippy-preview; fi

so we can get something like:

$ cargo clippy --version
clippy 0.0.212 (125907ad 2018-09-17)

in the build log.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancement ✨New feature or requestgood first issue 🌟These issues are good for way to get started with supernova

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions