Update version links in CHANGELOG #475
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
env: | |
RUSTFLAGS: -Dwarnings | |
RUST_BACKTRACE: full | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
build: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: -Dunused-crate-dependencies | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install krb5 | |
run: | | |
sudo apt install -y libkrb5-dev | |
- name: Install cargo-all-features | |
run: cargo install cargo-all-features | |
- name: Build code | |
run: cargo build-all-features | |
features: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.compute-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: romnn/cargo-feature-combinations@main | |
- name: Compute feature matrix | |
id: compute-matrix | |
run: |- | |
MATRIX="$(cargo fc matrix)" | |
echo "matrix=${MATRIX}" >> "$GITHUB_OUTPUT" | |
test-matrix: | |
needs: [build, features] | |
runs-on: ubuntu-latest | |
name: "Test features: [${{ matrix.package.features }}]" | |
env: | |
RUST_LOG: debug | |
strategy: | |
fail-fast: false | |
matrix: | |
package: ${{ fromJson(needs.features.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install krb5 | |
run: | | |
sudo apt install -y libkrb5-dev | |
- name: Test code | |
run: cargo test --features "${{ matrix.package.features }}" -- --nocapture | |
test: | |
needs: [test-matrix] | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
steps: | |
- if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 | |
coverage: | |
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master') | |
needs: [test] | |
runs-on: ubuntu-latest | |
env: | |
RUST_LOG: debug | |
RUSTFLAGS: -Cinstrument-coverage | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: llvm-tools-preview | |
- run: cargo install grcov | |
- name: Install krb5 | |
run: | | |
sudo apt install -y libkrb5-dev | |
- run: cargo build --all-features --verbose | |
- name: Run tests | |
run: LLVM_PROFILE_FILE="zookeeper-client-%p-%m.profraw" cargo test --all-features --verbose -- --nocapture | |
- name: Generate coverage report | |
run: grcov $(find . -name "zookeeper-*.profraw" -print) --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v2 | |
with: | |
verbose: true | |
lint: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: clippy | |
- name: Install krb5 | |
run: | | |
sudo apt install -y libkrb5-dev | |
- name: Lint code | |
run: cargo clippy --all-targets --all-features --no-deps -- -D clippy::all | |
release: | |
if: github.event_name == 'push' && github.ref_type == 'tag' | |
needs: [build, test, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install krb5 | |
run: | | |
sudo apt install -y libkrb5-dev | |
- name: publish crate | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: cargo publish |