mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Feature gate brotli2 encoder (#321)
This commit is contained in:
parent
d3499feb80
commit
0e21f46210
6 changed files with 58 additions and 24 deletions
4
.github/workflows/cov.yml
vendored
4
.github/workflows/cov.yml
vendored
|
@ -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"
|
||||
|
|
20
.github/workflows/windows.yml
vendored
20
.github/workflows/windows.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue