Skip to content

Commit

Permalink
chore(ci): Deny aws-lc backend to sneak in (#2436)
Browse files Browse the repository at this point in the history
## Description

Because of the platforms we support we want to stay with the ring
backend for rustls for now.

## Breaking Changes

<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->

## Notes & open questions

#2438 for the flaky test.

## Change checklist

- [x] Self-review.
- ~~[ ] Documentation updates if relevant.~~
- ~~[ ] Tests if relevant.~~
- ~~[ ] All breaking changes documented.~~
  • Loading branch information
flub authored Jul 1, 2024
1 parent 59e2719 commit 6aef6aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[bans]
multiple-versions = "allow"
deny = [
"openssl",
"aws-lc",
"native-tls",
"openssl",
]

[licenses]
Expand Down
1 change: 1 addition & 0 deletions iroh-cli/src/commands/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ mod tests {
use iroh::util::path::IrohPaths;

#[tokio::test]
#[ignore = "flaky"]
async fn test_run_rpc_lock_file() -> Result<()> {
let data_dir = tempfile::TempDir::with_prefix("rpc-lock-file-")?;
let lock_file_path = data_dir
Expand Down

0 comments on commit 6aef6aa

Please sign in to comment.