deps(webrtc): don't include webrtc
by default if tokio
is enabled
#14819
Workflow file for this run
This file contains 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: Continuous integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 # Fail cache download after 2 minutes. | |
jobs: | |
test: | |
name: Test ${{ matrix.crate }} | |
runs-on: ${{ fromJSON( | |
github.repository == 'libp2p/rust-libp2p' && ( | |
(contains(fromJSON('["libp2p-webrtc", "libp2p"]'), matrix.crate) && '["self-hosted", "linux", "x64", "2xlarge"]') || | |
(contains(fromJSON('["libp2p-quic", "libp2p-perf"]'), matrix.crate) && '["self-hosted", "linux", "x64", "xlarge"]') || | |
'["self-hosted", "linux", "x64", "large"]' | |
) || '"ubuntu-latest"') }} | |
timeout-minutes: 10 | |
needs: gather_published_crates | |
strategy: | |
fail-fast: false | |
matrix: | |
crate: ${{ fromJSON(needs.gather_published_crates.outputs.members) }} | |
steps: | |
- name: Install Protoc | |
run: sudo apt-get install -y protobuf-compiler | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/checkout@v3 | |
- name: Get MSRV for ${{ matrix.crate }} | |
id: parse-msrv | |
run: | | |
RUST_VERSION=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[] | select(.name == "${{ matrix.crate }}") | .rust_version') | |
echo "version=${RUST_VERSION}" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Install Rust ${{ steps.parse-msrv.outputs.version }} for MSRV check | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ steps.parse-msrv.outputs.version }} | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
shared-key: msrv-cache | |
save-if: false | |
- name: Check if ${{ matrix.crate }} compiles on MSRV (Rust ${{ steps.parse-msrv.outputs.version }}) | |
run: cargo +${{ steps.parse-msrv.outputs.version }} build --package ${{ matrix.crate }} --all-features | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
shared-key: stable-cache | |
save-if: false | |
- name: Run all tests | |
run: cargo test --package ${{ matrix.crate }} --all-features | |
- name: Check if we compile without any features activated | |
run: cargo build --package ${{ matrix.crate }} --no-default-features | |
- run: cargo clean | |
- name: Check if crate has been released | |
id: check-released | |
run: | | |
RESPONSE_CODE=$(curl https://crates.io/api/v1/crates/${{ matrix.crate }} --silent --write-out "%{http_code}" --output /dev/null) | |
echo "code=${RESPONSE_CODE}" | |
echo "code=${RESPONSE_CODE}" >> $GITHUB_OUTPUT | |
- uses: ./.github/actions/cargo-semver-checks | |
if: steps.check-released.outputs.code == 200 # Workaround until https://github.com/obi1kenobi/cargo-semver-check/issues/146 is shipped. | |
with: | |
crate: ${{ matrix.crate }} | |
- name: Enforce no dependency on meta crate | |
run: | | |
cargo metadata --format-version=1 --no-deps | \ | |
jq -e -r '.packages[] | select(.name == "${{ matrix.crate }}") | .dependencies | all(.name != "libp2p")' | |
cross: | |
name: Compile on ${{ matrix.target }} | |
strategy: | |
matrix: | |
include: | |
- target: "wasm32-unknown-unknown" | |
os: ubuntu-latest | |
- target: "wasm32-unknown-emscripten" | |
os: ubuntu-latest | |
- target: "wasm32-wasi" | |
os: ubuntu-latest | |
- target: "x86_64-apple-darwin" | |
os: macos-latest | |
- target: "x86_64-pc-windows-msvc" | |
os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ matrix.target }} | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
key: ${{ matrix.target }} | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- run: cargo check --package libp2p --all-features --target=${{ matrix.target }} | |
feature_matrix: # Test various feature combinations work correctly | |
name: Compile with select features (${{ matrix.features }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- features: "mdns tcp dns tokio" | |
- features: "mdns tcp dns async-std" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
key: ${{ matrix.features }} | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- run: cargo check --package libp2p --features="${{ matrix.features }}" | |
check-rustdoc-links: | |
name: Check rustdoc intra-doc links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- name: Check rustdoc links | |
run: RUSTDOCFLAGS="--deny rustdoc::broken_intra_doc_links --deny warnings" cargo doc --verbose --workspace --no-deps --all-features --document-private-items | |
clippy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust-version: [ | |
1.69.0, # current stable | |
beta | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust-version }} | |
components: clippy | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- name: Run cargo clippy | |
run: cargo custom-clippy # cargo alias to allow reuse of config locally | |
ipfs-integration-test: | |
name: IPFS Integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- name: Run ipfs-kad example | |
run: cd ./examples/ipfs-kad/ && RUST_LOG=libp2p_swarm=debug,libp2p_kad=trace,libp2p_tcp=debug cargo run | |
examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
shared-key: stable-cache | |
save-if: false | |
- name: Compile all examples | |
run: | | |
set -e; | |
for toml in examples/**/Cargo.toml; do | |
cargo check --manifest-path "$toml"; | |
done | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- name: Check formatting | |
run: cargo fmt -- --check | |
manifest_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: r7kamura/rust-problem-matchers@d58b70c4a13c4866d96436315da451d8106f8f08 #v1.3.0 | |
- name: Ensure `full` feature contains all features | |
run: | | |
ALL_FEATURES=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[] | select(.name == "libp2p") | .features | keys | map(select(. != "full")) | sort | join(" ")') | |
FULL_FEATURE=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[] | select(.name == "libp2p") | .features["full"] | sort | join(" ")') | |
test "$ALL_FEATURES = $FULL_FEATURE" | |
echo "$ALL_FEATURES"; | |
echo "$FULL_FEATURE"; | |
test "$ALL_FEATURES" = "$FULL_FEATURE" | |
gather_published_crates: | |
runs-on: ubuntu-latest | |
outputs: | |
members: ${{ steps.cargo-metadata.outputs.members }} | |
steps: | |
- uses: actions/checkout@v3 | |
- id: cargo-metadata | |
run: | | |
WORKSPACE_MEMBERS=$(cargo metadata --format-version=1 --no-deps | jq -c '.packages | map(select(.publish == null) | .name)') | |
echo "members=${WORKSPACE_MEMBERS}" >> $GITHUB_OUTPUT | |
check-proto-files: | |
name: Check for changes in proto files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
- run: cargo install --version 0.10.0 pb-rs --locked | |
- name: Glob match | |
uses: tj-actions/glob@v17 | |
id: glob | |
with: | |
files: | | |
**/generated/*.proto | |
- name: Generate proto files | |
run: pb-rs --dont_use_cow ${{ steps.glob.outputs.paths }} | |
- name: Ensure generated files are unmodified # https://stackoverflow.com/a/5737794 | |
run: | | |
git_status=$(git status --porcelain) | |
echo $git_status | |
test -z "$git_status" | |
ensure-lockfile-uptodate: | |
name: Ensure that `Cargo.lock` is up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
- run: cargo metadata --locked --format-version=1 > /dev/null |