mirror of
https://github.com/openharmony/third_party_rust_tower.git
synced 2026-07-01 20:44:03 -04:00
ac85986808
`tower` builds are now failing on CI because Tokio v1.17.0 bumped MSRV to 1.49.0. This branch updates `tower`'s MSRV to 1.49.0 to track Tokio's MSRV. I also added nicer documentation of the MSRV based on Tokio's, and added the `rust-version` Cargo metadata to the `tower` crate's `Cargo.toml`. Note that `tower-service` and `tower-layer` can technically continue to support much earlier Rust versions than `tower` can, since they don't depend on external crates and are very small. We could consider testing separate, older MSRVs on CI for those crates individually. I didn't do that in this PR, though, because I wasn't sure if this was worth the effort and I just wanted to get CI passing again.
109 lines
2.9 KiB
YAML
109 lines
2.9 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
# Disable fail-fast. If the test run for a particular Rust version fails,
|
|
# don't cancel the other test runs, so that we can determine whether a
|
|
# failure only occurs on a particular version.
|
|
fail-fast: false
|
|
matrix:
|
|
rust: [stable, 1.49.0]
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
profile: minimal
|
|
override: true
|
|
- name: Check
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --workspace --all-features --all-targets
|
|
|
|
check-docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
- name: cargo doc
|
|
working-directory: ${{ matrix.subcrate }}
|
|
env:
|
|
RUSTDOCFLAGS: "-D rustdoc::broken_intra_doc_links"
|
|
run: cargo doc --all-features --no-deps
|
|
|
|
cargo-hack:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
- name: Install cargo-hack
|
|
run: |
|
|
curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin
|
|
- name: cargo hack check
|
|
working-directory: ${{ matrix.subcrate }}
|
|
run: cargo hack check --each-feature --no-dev-deps --workspace
|
|
|
|
test-versions:
|
|
# Test against the stable, beta, and nightly Rust toolchains on ubuntu-latest.
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
# Disable fail-fast. If the test run for a particular Rust version fails,
|
|
# don't cancel the other test runs, so that we can determine whether a
|
|
# failure only occurs on a particular version.
|
|
fail-fast: false
|
|
matrix:
|
|
rust: [stable, beta, nightly, 1.49.0]
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
profile: minimal
|
|
override: true
|
|
- name: Run tests
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --workspace --all-features
|
|
|
|
style:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
components: rustfmt
|
|
profile: minimal
|
|
- name: rustfmt
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
deny-check:
|
|
name: cargo-deny check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
with:
|
|
command: check
|