Skip to content

Commit c6566fb

Browse files
authored
[QUIC] Consume main MsQuic in stress (#119278)
* Consume main MsQuic in stress * Fix msquic build
1 parent a6740f4 commit c6566fb

File tree

1 file changed

+2
-2
lines changed
  • src/libraries/System.Net.Http/tests/StressTests/HttpStress

1 file changed

+2
-2
lines changed

src/libraries/System.Net.Http/tests/StressTests/HttpStress/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ RUN apt-get update -y && \
77
apt-get upgrade -y && \
88
apt-get install -y cmake clang ruby-dev gem lttng-tools libssl-dev && \
99
gem install fpm
10-
RUN git clone --depth 1 --single-branch --branch v2.4.4 --recursive https://github.com/microsoft/msquic
10+
RUN git clone --depth 1 --single-branch --branch main --recursive https://github.com/microsoft/msquic
1111
RUN cd msquic/ && \
1212
mkdir build && \
13-
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DQUIC_ENABLE_LOGGING=false -DQUIC_USE_SYSTEM_LIBCRYPTO=true -DQUIC_BUILD_TOOLS=off -DQUIC_BUILD_TEST=off -DQUIC_BUILD_PERF=off -DQUIC_TLS=openssl3 -DQUIC_ENABLE_SANITIZERS=on && \
13+
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DQUIC_ENABLE_LOGGING=false -DQUIC_USE_SYSTEM_LIBCRYPTO=true -DQUIC_BUILD_TOOLS=off -DQUIC_BUILD_TEST=off -DQUIC_BUILD_PERF=off -DQUIC_TLS_LIB=quictls -DQUIC_ENABLE_SANITIZERS=on && \
1414
cd build && \
1515
cmake --build . --config Debug
1616
RUN cd msquic/build/bin/Debug && \

0 commit comments

Comments
 (0)