Skip to content
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

Simplify CI, drop Rust 1.31 compatibility #180

Merged
merged 4 commits into from
Apr 19, 2020
Merged

Simplify CI, drop Rust 1.31 compatibility #180

merged 4 commits into from
Apr 19, 2020

Conversation

mgeisler
Copy link
Owner

This simplifies the CI scripts and most importantly, this removes the test against a fixed version of Rust.

Over the years, we’ve repeatedly seen build failures in our CI, even when nothing changed in textwrap. The failures happened because we tested against a fixed version of Rust, but our dependencies kept releasing new patch it has versions that would push up the minimum required Rust version.

The build failures makes it infeasible to keep textwrap compatible with any particular version of Rust. We will therefore track the latest stable version of Rust from now on.

This removes the matrix configuration which allowed breakage on
nightly -- I don't think I've ever seen nightly Rust break my crate.
Even if it did, I would like to know about it and try and fix it.

Caching is removed to prevent accidentally hiding problems when our
dependencies release new versions.

Finally, the --verbose flag adds precise version information to the
log files. This has not been useful so far, so I'm removing it.
Over the years, we’ve repeatedly seen build failures in our CI, even
when nothing changed in `textwrap`. The failures happened because we
tested against a fixed version of Rust, but our dependencies kept
releasing new patch it has versions that would push up the minimum
required Rust version.

The build failures makes it infeasible to keep `textwrap` compatible
with any particular version of Rust. We will therefore track the
latest stable version of Rust from now on.
The --verbose flag seems to mostly make the output unreadable and has
thus been removed.

The caching might have made things faster, but it increases the risk
of us failing to spot problems when our dependencies are updated.

Putting the "cargo build" into the install script means that Travis
will hide the output by default. This lets us focus on the tests.
@codecov-io
Copy link

codecov-io commented Apr 18, 2020

Codecov Report

Merging #180 into master will increase coverage by 0.28%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #180      +/-   ##
==========================================
+ Coverage   93.73%   94.02%   +0.28%     
==========================================
  Files           4        4              
  Lines         383      368      -15     
==========================================
- Hits          359      346      -13     
+ Misses         24       22       -2     
Impacted Files Coverage Δ
tests/version-numbers.rs 100.00% <ø> (ø)
src/indentation.rs 100.00% <0.00%> (+2.22%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update a2d6e9c...6d67772. Read the comment docs.

@mgeisler mgeisler merged commit d0ca2e8 into master Apr 19, 2020
@mgeisler mgeisler deleted the simplify-ci branch September 2, 2020 20:09
mgeisler added a commit that referenced this pull request Jun 12, 2022
This our current minimum supported Rust version (MSRV). I gave up on
maintaining compatibility with Rust 2018 two years ago in #180, but I
hope the update speed of our dependencies has slowed down enough that
we can keep compatibility with Rust 1.56 for a while.

If this turns out to be problematic again, then I will bump the MSRV
as needed. This will of course be clearly communicated in the release
notes for each release.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants