diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index e7f3a7a7..c08e1cc7 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -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 diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index dad535ea..f4e23958 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 9ba3e9f8..79751f35 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -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: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index a12ab641..88348d75 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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" diff --git a/Cargo.toml b/Cargo.toml index d058ae65..13846071 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,10 +15,10 @@ members = [ "ntex-macros", "ntex-util", + "ntex-async-std", "ntex-compio", "ntex-glommio", "ntex-tokio", - "ntex-async-std", ] [patch.crates-io] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 7d9eef5d..1416c9d7 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -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"] diff --git a/ntex/src/web/config.rs b/ntex/src/web/config.rs index 67e28e92..91c5034c 100644 --- a/ntex/src/web/config.rs +++ b/ntex/src/web/config.rs @@ -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.