g3proxy: send ppv2 header for http connection in divert_tcp escaper #631
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows-CI | |
on: | |
push: | |
paths-ignore: | |
- 'ansible/**' | |
- 'doc/**' | |
- 'demo/**' | |
- 'scripts/**' | |
- 'g3proxy/doc/**' | |
- 'g3tiles/doc/**' | |
branches: | |
- 'master' | |
- 'rel/**' | |
- 'lts/**' | |
pull_request: | |
branches: | |
- 'master' | |
- 'rel/**' | |
- 'lts/**' | |
env: | |
CARGO_TERM_COLOR: always | |
VCPKG_ROOT: C:\vcpkg | |
WIN_FEATURES: quic,vendored-c-ares,hickory | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Install tools (choco) | |
run: choco install capnproto | |
- name: Install lib dependencies (vcpkg) | |
run: vcpkg install --triplet=x64-windows-static-md openssl | |
- name: Cargo build | |
run: cargo build --no-default-features --features $env:WIN_FEATURES | |
- name: Cargo clippy | |
run: cargo clippy --no-default-features --features $env:WIN_FEATURES --tests -- --deny warnings | |
- name: Cargo test | |
run: cargo test --no-default-features --features $env:WIN_FEATURES | |
build-vendored: | |
name: Build vendored | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
feature: | |
- vendored-openssl | |
- vendored-tongsuo | |
- vendored-aws-lc | |
- vendored-boringssl | |
component: | |
- g3proxy | |
- g3bench | |
- g3tiles | |
- g3fcgen | |
- g3mkcert | |
- g3keymess | |
steps: | |
- name: Install common tools | |
run: choco install capnproto | |
- name: Install nasm and ninja for BoringSSL | |
if: matrix.feature == 'vendored-boringssl' | |
run: choco install nasm ninja | |
- name: Install nasm for AWS-LC | |
if: matrix.feature == 'vendored-aws-lc' | |
uses: ilammy/setup-nasm@v1 | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Cargo build | |
run: cargo build --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} | |
- name: Cargo clippy | |
run: cargo clippy --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} -- --deny warnings |