mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 21:51:06 +01:00
check ulimit
This commit is contained in:
parent
303666278a
commit
3e56eb1174
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -7,6 +7,18 @@ on:
|
|||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
check_ulimit:
|
||||||
|
name: check ulimit (temp)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: check ulimit
|
||||||
|
run: |
|
||||||
|
which sudo || true
|
||||||
|
ulimit -a || true
|
||||||
|
sudo ulimit -a || true
|
||||||
|
ulimit -l 512 || true
|
||||||
|
sudo ulimit -l 512 || true
|
||||||
|
|
||||||
build_and_test:
|
build_and_test:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -55,7 +55,7 @@ tokio-openssl = { version = "0.6", optional = true }
|
|||||||
|
|
||||||
# rustls
|
# rustls
|
||||||
tokio-rustls = { version = "0.23", optional = true }
|
tokio-rustls = { version = "0.23", optional = true }
|
||||||
webpki-roots = { version = "0.21", optional = true }
|
webpki-roots = { version = "0.22", optional = true }
|
||||||
|
|
||||||
# native-tls
|
# native-tls
|
||||||
tokio-native-tls = { version = "0.3", optional = true }
|
tokio-native-tls = { version = "0.3", optional = true }
|
||||||
|
@ -22,6 +22,8 @@ mod error;
|
|||||||
mod resolve;
|
mod resolve;
|
||||||
mod service;
|
mod service;
|
||||||
pub mod ssl;
|
pub mod ssl;
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use ssl as tls;
|
||||||
#[cfg(feature = "uri")]
|
#[cfg(feature = "uri")]
|
||||||
mod uri;
|
mod uri;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user