mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Initial support for compio runtime (#399)
This commit is contained in:
parent
8a3a8f1df8
commit
85b076c640
7 changed files with 29 additions and 3 deletions
5
.github/workflows/cov.yml
vendored
5
.github/workflows/cov.yml
vendored
|
@ -29,11 +29,14 @@ jobs:
|
|||
- name: Code coverage (glommio)
|
||||
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
||||
- name: Code coverage (compio)
|
||||
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="compio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
||||
- name: Code coverage
|
||||
run: RUST_LOG=trace cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
||||
- name: Generate coverage report
|
||||
run: cargo +nightly llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-tokio|ntex-glommio|ntex-async-std"
|
||||
run: cargo +nightly llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-tokio|ntex-glommio|ntex-async-std|ntex-compio"
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v4
|
||||
|
|
6
.github/workflows/linux.yml
vendored
6
.github/workflows/linux.yml
vendored
|
@ -48,6 +48,12 @@ jobs:
|
|||
timeout-minutes: 40
|
||||
run: cargo test --all --all-features --no-fail-fast -- --nocapture
|
||||
|
||||
- name: Run compio tests
|
||||
timeout-minutes: 40
|
||||
run: |
|
||||
cd ntex
|
||||
cargo test --no-default-features --no-fail-fast --features="compio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
||||
- name: Run async-std tests
|
||||
timeout-minutes: 40
|
||||
continue-on-error: true
|
||||
|
|
6
.github/workflows/osx.yml
vendored
6
.github/workflows/osx.yml
vendored
|
@ -40,6 +40,12 @@ jobs:
|
|||
- name: Run tests
|
||||
run: cargo test --all --all-features --no-fail-fast -- --nocapture
|
||||
|
||||
- name: Run compio tests
|
||||
timeout-minutes: 40
|
||||
run: |
|
||||
cd ntex
|
||||
cargo test --no-default-features --no-fail-fast --features="compio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
||||
- name: Install cargo-cache
|
||||
continue-on-error: true
|
||||
run: |
|
||||
|
|
9
.github/workflows/windows.yml
vendored
9
.github/workflows/windows.yml
vendored
|
@ -63,4 +63,11 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
run: |
|
||||
cargo test --lib --all-features --no-fail-fast -- --nocapture --skip test_panic_in_worker --skip test_connection_force_close --skip test_connection_server_close --skip test_freeze --skip test_simple --skip test_test_methods --skip test_connection_wait_queue_force_close --skip test_params --skip test_body --skip test_form --skip test_json --skip test_connection_reuse --skip test_connection_wait_queue --skip test_no_decompress --skip test_connection_reuse_h2 --skip test_h2_tcp --skip test_timer
|
||||
cargo test --lib --all-features --no-fail-fast -- --nocapture --skip test_timer
|
||||
|
||||
- name: Run compio tests
|
||||
timeout-minutes: 40
|
||||
continue-on-error: true
|
||||
run: |
|
||||
cd ntex
|
||||
cargo test --no-default-features --no-fail-fast --features="compio,cookie,url,compress,openssl,rustls,ws,brotli"
|
||||
|
|
|
@ -15,10 +15,10 @@ members = [
|
|||
"ntex-macros",
|
||||
"ntex-util",
|
||||
|
||||
"ntex-async-std",
|
||||
"ntex-compio",
|
||||
"ntex-glommio",
|
||||
"ntex-tokio",
|
||||
"ntex-async-std",
|
||||
]
|
||||
|
||||
[patch.crates-io]
|
||||
|
|
|
@ -51,6 +51,9 @@ glommio = ["ntex-net/glommio"]
|
|||
# async-std runtime
|
||||
async-std = ["ntex-net/async-std"]
|
||||
|
||||
# compio runtime
|
||||
compio = ["ntex-net/compio"]
|
||||
|
||||
# websocket support
|
||||
ws = ["dep:sha-1"]
|
||||
|
||||
|
|
|
@ -57,6 +57,7 @@ impl Default for AppConfig {
|
|||
}
|
||||
|
||||
/// Service config is used for external configuration.
|
||||
///
|
||||
/// Part of application configuration could be offloaded
|
||||
/// to set of external methods. This could help with
|
||||
/// modularization of big application configuration.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue