Glommio runtime support (#94)

* add glommio runtime support

* optional compilation for glommio
This commit is contained in:
Nikolay Kim 2022-01-17 01:03:15 +06:00 committed by GitHub
parent 429073f9ff
commit 450332144d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 1024 additions and 10 deletions

View file

@ -63,6 +63,12 @@ jobs:
cd ntex
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls" --lib -- --test-threads 1
- name: Run glommio tests
timeout-minutes: 40
run: |
cd ntex
sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo test --no-default-features --no-fail-fast --features=\"glommio,cookie,url,compress,openssl,rustls\""
- name: Install tarpaulin
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true
@ -82,12 +88,20 @@ jobs:
cd ntex
cargo tarpaulin --out Xml --output-dir=.. --no-default-features --features="async-std,cookie,url,compress,openssl,rustls" --lib
- name: Generate coverage report (glommio)
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true
run: |
cd ntex
sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo tarpaulin --out Xml --no-default-features --features=\"glommio,cookie,url,compress,openssl,rustls\" --lib"
- name: Upload to Codecov
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
file: cobertura.xml
files: cobertura.xml, ./ntex/cobertura.xml
verbose: true
- name: Install cargo-cache
continue-on-error: true