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

Update required CI checks for rust-libp2p #73

Merged
merged 5 commits into from
Nov 18, 2022
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 41 additions & 7 deletions github/libp2p.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3966,15 +3966,49 @@ repositories:
restrict_dismissals: false
required_status_checks:
contexts:
- Build and test (--all-features)
- Build and test (--benches --all-features)
- Build and test (--no-default-features)
- Build on WASM (wasm32-unknown-emscripten)
- Build on WASM (wasm32-wasi)
- Check rustdoc intra-doc links
- check-clippy
- Integration tests
- clippy (stable)
- Compile on wasm32-unknown-emscripten
- Compile on wasm32-unknown-unknown
- Compile on wasm32-wasi
- Compile on x86_64-apple-darwin
- Compile on x86_64-pc-windows-msvc
- Compile with select features (mdns tcp dns async-std)
- Compile with select features (mdns tcp dns tokio)
# - clippy (beta) # New lints landing in beta should not be a blocker for CI.
- IPFS Integration tests
- rustfmt
- Test libp2p-autonat
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do I understand correctly that each time we add a new crate we have to touch this file? I am assuming there is no out-out instead of opt-in for required status checks?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By default, status checks are not required so we don't need to touch the file unless we want them to be required!

- Test libp2p-core
- Test libp2p-dcutr
- Test libp2p-deflate
- Test libp2p-dns
- Test libp2p-floodsub
- Test libp2p-gossipsub
- Test libp2p-identify
- Test libp2p-kad
- Test libp2p-mdns
- Test libp2p-metrics
- Test libp2p-mplex
- Test libp2p-noise
- Test libp2p-ping
- Test libp2p-plaintext
- Test libp2p-pnet
- Test libp2p-relay
- Test libp2p-rendezvous
- Test libp2p-request-response
- Test libp2p-swarm-derive
- Test libp2p-swarm
- Test libp2p-tcp
- Test libp2p-tls
- Test libp2p-uds
- Test libp2p-wasm-ext
- Test libp2p-websocket
- Test libp2p-yamux
- Test libp2p
- Test multistream-select
- Test prost-codec
- Test rw-stream-sink
strict: true
default_branch: master
description: "The Rust Implementation of the libp2p networking stack. "
Expand Down