Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ jobs:
git -C msquic submodule update --init --depth 1 submodules/xdp-for-windows
- name: Configure static Windows build
shell: pwsh
env:
# msquic compiles its core with /analyze and /WX, and the MSVC
# analyzer on the current runner image reports a C28020 false
# positive in crypto_tls.c. Suppress that warning; CMake appends
# CFLAGS to its default compiler flags at first configure.
CFLAGS: /wd28020
run: |
cmake -S msquic -B msquic/build -A x64 `
-DQUIC_BUILD_PERF=ON `
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:24.04 AS build

ARG MSQUIC_VERSION=v2.5.10
ARG MSQUIC_VERSION=v2.6.0

RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential ca-certificates cmake git perl \
Expand Down