mirror of
https://github.com/tower-rs/tower.git
synced 2025-09-29 22:11:03 +00:00

Tower has test and check jobs on CI that run on a build matrix including a number of Rust versions. By default, GitHub Actions has fail-fast semantics for matrix jobs, so if any matrix job fails, the rest are cancelled and the build is failed. This is intended to help builds complete faster. This isn't really the ideal behavior for testing across multiple Rust versions. When a build fails on a particular toolchain version, we would ideally like to know whether the failure is localized to that version or exists on _all_ Rust versions. This is particularly important for builds on nightly Rust, as the nightly toolchain is more likely to contain compiler regressions that might not be our fault at all. Similarly, we might want to know if a change only broke the build on our MSRV, or if it broke the build everywhere --- such an issue would be fixed differently. This also currently means that the nightly test run failing will prevent PRs from being merged, even if the failure is due to a nightly compiler regression. We currently only *require* the stable and MSRV test runs to pass in order to merge a PR, but because the fail-fast behavior will cancel them if the nightly build fails, this means that nightly failing will effectively prevent merging PRs...which, given that it's not marked as required, seems different from what we intended. Therefore, this PR changes the CI workflow to disable fail-fast behavior on the cross-version test jobs. Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Tower
Tower is a library of modular and reusable components for building robust networking clients and servers.
Overview
Tower aims to make it as easy as possible to build robust networking clients and servers. It is protocol agnostic, but is designed around a request / response pattern. If your protocol is entirely stream based, Tower may not be a good fit.
Minimum supported Rust version
tower's MSRV is 1.46.
Getting Started
If you're brand new to Tower and want to start with the basics we recommend you check out some of our guides.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tower by you, shall be licensed as MIT, without any additional terms or conditions.
Description
Languages
Rust
100%