Feature gate brotli2 encoder (#321)

This commit is contained in:
Nikolay Kim 2024-03-28 10:56:36 +01:00 committed by GitHub
parent d3499feb80
commit 0e21f46210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 58 additions and 24 deletions

View file

@ -31,10 +31,10 @@ jobs:
run: cargo llvm-cov clean --workspace
- name: Code coverage (glommio)
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws"
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws,brotli"
- name: Code coverage
run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws"
run: 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"

View file

@ -32,24 +32,30 @@ jobs:
with:
command: generate-lockfile
# - name: Cache vcpkg
# uses: actions/cache@v1
# with:
# path: C:\vcpkg\installed\x64-windows\
# key: x86_64-pc-windows-msvc-openssl
- name: Cache vcpkg
uses: actions/cache@v4
with:
path: C:\vcpkg\installed\x64-windows\
key: x86_64-pc-windows-msvc-openssl
- name: Cache cargo registry
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Install cmake
uses: lukka/get-cmake@latest
- name: Install nasm
uses: ilammy/setup-nasm@v1
- name: Install OpenSSL
run: |
vcpkg integrate install