mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
f913a2972b
- [BUGFIX] ID-28: do not use TLS middlebox compatibility mode in ClientHello. This change requires using a newer version of BoringSSL. - [BUGFIX] Free connections in Advisory Tick Time Queue in engine dtor. - [BUGFIX] IETF QUIC client: narrow migration check to a single path. - [BUGFIX] NULL dereference: set function pointers for alarm for path challenges 2 and 3. - [BUGFIX] HTTP/3 headers may be followed immediately by trailers. - [BUGFIX] Log messages when SCID changes.
63 lines
999 B
YAML
63 lines
999 B
YAML
version: 1.{branch}.{build}
|
|
|
|
image: Visual Studio 2017
|
|
|
|
cache: c:\tools\vcpkg\installed
|
|
|
|
init:
|
|
|
|
- cmd: ''
|
|
|
|
install:
|
|
|
|
- cmd: >-
|
|
|
|
vcpkg install zlib:x64-windows-static
|
|
|
|
vcpkg install libevent:x64-windows-static
|
|
|
|
vcpkg install pcre:x64-windows-static
|
|
|
|
vcpkg integrate install
|
|
|
|
build_script:
|
|
|
|
- cmd: >-
|
|
|
|
vcpkg list
|
|
|
|
git clone https://boringssl.googlesource.com/boringssl
|
|
|
|
cd boringssl
|
|
|
|
git checkout 251b5169fd44345f455438312ec4e18ae07fd58c
|
|
|
|
cmake -DCMAKE_GENERATOR_PLATFORM=x64 --config Debug -DBUILD_SHARED_LIBS=OFF -DOPENSSL_NO_ASM=1 .
|
|
|
|
|
|
|
|
msbuild /m ALL_BUILD.vcxproj
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
git submodule init
|
|
|
|
|
|
|
|
git submodule update
|
|
|
|
|
|
|
|
cmake -DCMAKE_GENERATOR_PLATFORM=x64 -DBUILD_SHARED_LIBS=OFF -DVCPKG_TARGET_TRIPLET=x64-windows-static -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DBORINGSSL_DIR=%cd%\boringssl .
|
|
|
|
|
|
|
|
msbuild /m ALL_BUILD.vcxproj
|
|
|
|
test_script:
|
|
|
|
- cmd: msbuild /m RUN_TESTS.vcxproj
|