mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 17: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]
|
||||
|
||||
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:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
@ -55,7 +55,7 @@ tokio-openssl = { version = "0.6", optional = true }
|
||||
|
||||
# rustls
|
||||
tokio-rustls = { version = "0.23", optional = true }
|
||||
webpki-roots = { version = "0.21", optional = true }
|
||||
webpki-roots = { version = "0.22", optional = true }
|
||||
|
||||
# native-tls
|
||||
tokio-native-tls = { version = "0.3", optional = true }
|
||||
|
@ -22,6 +22,8 @@ mod error;
|
||||
mod resolve;
|
||||
mod service;
|
||||
pub mod ssl;
|
||||
#[doc(inline)]
|
||||
pub use ssl as tls;
|
||||
#[cfg(feature = "uri")]
|
||||
mod uri;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user