-
Notifications
You must be signed in to change notification settings - Fork 6
522 lines (453 loc) · 20.1 KB
/
Copy pathBuild.yml
File metadata and controls
522 lines (453 loc) · 20.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
name: Build
on:
push:
branches-ignore:
- 'unixdomain'
jobs:
Mingw:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Update OS and Compilers
run: |
sudo apt install -y cmake ninja-build
sudo apt install -y mingw-w64
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=./cmake/mingw.cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DBOOST_EXCLUDE_LIBRARIES="stacktrace;redis;mysql;multiprecision;log;iostreams;charconv;locale" -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-mingw_w64
path: |
build/bin/release/proxy_server.exe
build/bin/release/launcher.exe
Docker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Build proxy
run: |
docker build . -t proxy:v1
docker create --name ps proxy:v1
mkdir -p build/docker
docker cp ps:/usr/local/bin/proxy_server build/docker
docker cp ps:/usr/local/bin/proxy_server-wolfssl build/docker
docker cp ps:/usr/local/bin/launcher build/docker
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_musl_x64
path: build/docker/
Linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Update OS and Compilers
run: |
sudo apt update
sudo apt install -y cmake ninja-build libpam0g-dev
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -DENABLE_USE_PAM_AUTH=ON -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_glibc_x64
path: |
build/bin/proxy_server
build/bin/launcher
BoringSSL:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Update OS and Compilers
run: |
sudo apt update
sudo apt install -y cmake ninja-build
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_USE_OPENSSL=OFF -DENABLE_USE_BORINGSSL=ON -G Ninja
# boringssl 编译较重, 限制并行度以避免 runner 内存不足.
cmake --build build --config Release -- -j2
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_glibc_x64_boringssl
path: |
build/bin/proxy_server
build/bin/launcher
Alpine:
runs-on: ubuntu-24.04
container:
image: alpine:3.20.1
steps:
- name: Install packages
run: apk add bash git nasm yasm pkgconfig build-base clang cmake ninja linux-headers linux-pam-dev
- uses: actions/checkout@v6
- name: Build proxy
run: |
CC=clang CXX=clang++ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS="-static" -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-alpine_musl_x64
path: |
build/bin/proxy_server
build/bin/launcher
MiMalloc:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Update OS and Compilers
run: |
sudo apt update
sudo apt install -y cmake ninja-build libpam0g-dev
- name: Build mimalloc
run: |
git clone https://github.com/microsoft/mimalloc.git
cd mimalloc && mkdir build && cd build && git checkout tags/v2.1.2
echo "Building mimalloc..."
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_SNMALLOC_STATIC=OFF -DMI_BUILD_STATIC=ON -DMI_BUILD_SHARED=OFF -DMI_BUILD_TESTS=OFF -DMI_BUILD_OBJECT=ON ..
make -j4
echo "Installing mimalloc..."
sudo make install
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -DENABLE_MIMALLOC_STATIC=ON -DENABLE_USE_PAM_AUTH=ON -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_mimalloc
path: |
build/bin/proxy_server
build/bin/launcher
SnMalloc:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Update OS and Compilers
run: |
sudo apt update
sudo apt install -y cmake ninja-build libpam0g-dev
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -DENABLE_SNMALLOC_STATIC=ON -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_snmalloc
path: |
build/bin/proxy_server
build/bin/launcher
LinuxClangLtoPgo:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Build proxy (clang + snmalloc + system openssl, LTO+PGO)
run: |
# 在 ubuntu:22.04 容器内用 clang 14 构建, 保证产物 glibc 符号 <= 2.35,
# 与 doc/pgo/README.md 的 VPS 高优化构建一致.
docker run --rm -i \
-e DEBIAN_FRONTEND=noninteractive \
-v "$GITHUB_WORKSPACE":/workspace \
-w /workspace \
ubuntu:22.04 \
bash -s <<'PGO_EOF'
set -euxo pipefail
# ==== toolchain (ubuntu 22.04 默认 clang 即 clang 14) ====
apt-get update -qq
apt-get install -y -qq --no-install-recommends \
ca-certificates git cmake ninja-build pkg-config \
clang g++ libssl-dev curl python3 openssl llvm-14
# 容器以 root 运行, checkout 的仓库属于 runner 用户, 需要放行 safe.directory
# 否则 gitGetVersion 拿不到 commit hash. (需在安装 git 之后执行)
git config --global --add safe.directory /workspace
# ==== Phase 1: PGO 埋点构建 ====
cmake -S /workspace -B /workspace/build-pgo-instr -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DENABLE_BUILD_WERROR=OFF \
-DENABLE_SNMALLOC_STATIC=ON -DENABLE_SYSTEM_OPENSSL=ON \
-DENABLE_BUILD_EXAMPLES=OFF \
-DCMAKE_C_FLAGS="-fprofile-instr-generate" \
-DCMAKE_CXX_FLAGS="-fprofile-instr-generate -mcx16" \
-DCMAKE_EXE_LINKER_FLAGS="-fprofile-instr-generate"
ninja -C /workspace/build-pgo-instr -j2
# ==== Phase 2: 用真实代理流量采集 PGO profile ====
# 自签证书, 供 proxy 的 TLS 终结模式使用 (内容嗅探 cert.pem/key.pem).
mkdir -p /workspace/pgo-ci/cert
openssl req -x509 -newkey rsa:2048 -keyout /workspace/pgo-ci/cert/key.pem \
-out /workspace/pgo-ci/cert/cert.pem -days 2 -nodes -subj "/CN=localhost" >/dev/null 2>&1
mkdir -p /tmp/www
dd if=/dev/urandom of=/tmp/www/blob.bin bs=1M count=256 status=none
(cd /tmp/www && python3 -m http.server 18080 --bind 127.0.0.1 >/dev/null 2>&1) &
HTTP_PID=$!
wait_port() {
local port=$1
for i in $(seq 1 50); do
(exec 3<>"/dev/tcp/127.0.0.1/$port") 2>/dev/null && break
sleep 0.2
done
}
wait_proxy() {
local port=$1 pid=$2
for i in $(seq 1 50); do
if ! kill -0 "$pid" 2>/dev/null; then
echo "FAIL: proxy (pid $pid) died before opening port $port" >&2
exit 1
fi
(exec 3<>"/dev/tcp/127.0.0.1/$port") 2>/dev/null && return 0
sleep 0.2
done
echo "FAIL: proxy (pid $pid) did not open port $port in time" >&2
exit 1
}
wait_exit() {
local pid=$1
for i in $(seq 1 100); do
kill -0 "$pid" 2>/dev/null || return 0
sleep 0.2
done
# 优雅退出失败则强杀, 避免 CI 挂起 (该次 profile 丢失, 不影响整体).
kill -KILL "$pid" 2>/dev/null || true
wait "$pid" 2>/dev/null || true
}
wait_port 18080
export LLVM_PROFILE_FILE=/workspace/pgo-ci/pgo-%p.profraw
# Run 1: TLS 终结代理 -> 覆盖 SSL 引擎 (批量 TLS 写) + CONNECT 隧道 + HTTP 转发
/workspace/build-pgo-instr/bin/proxy_server \
--server_listen 127.0.0.1:18081 --auth_users "" --disable_logs 1 \
--ssl_certificate_dir /workspace/pgo-ci/cert >/dev/null 2>&1 &
TLS_PID=$!
wait_proxy 18081 "$TLS_PID"
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ --proxytunnel -o /dev/null http://127.0.0.1:18080/blob.bin
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ --proxytunnel -o /dev/null http://127.0.0.1:18080/blob.bin
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ -o /dev/null http://127.0.0.1:18080/blob.bin
kill -TERM "$TLS_PID"
wait_exit "$TLS_PID"
# Run 2: 明文 HTTP 代理 -> 覆盖非 TLS 转发路径
/workspace/build-pgo-instr/bin/proxy_server \
--server_listen 127.0.0.1:18082 --auth_users "" --disable_logs 1 >/dev/null 2>&1 &
PLAIN_PID=$!
wait_proxy 18082 "$PLAIN_PID"
curl -sS -x http://127.0.0.1:18082 -o /dev/null http://127.0.0.1:18080/blob.bin
kill -TERM "$PLAIN_PID"
wait_exit "$PLAIN_PID"
unset LLVM_PROFILE_FILE
kill "$HTTP_PID" 2>/dev/null || true
nprof=$(ls /workspace/pgo-ci/*.profraw 2>/dev/null | wc -l)
echo "collected $nprof profraw file(s)"
[ "$nprof" -ge 1 ] || { echo "FAIL: no profile collected"; exit 1; }
# ==== Phase 3: 合并 profile + LTO+PGO 最终构建 ====
llvm-profdata-14 merge /workspace/pgo-ci/*.profraw -o /workspace/pgo-ci/merged.profdata
rm -rf /workspace/build-pgo-instr
cmake -S /workspace -B /workspace/build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DENABLE_BUILD_WERROR=OFF \
-DENABLE_SNMALLOC_STATIC=ON -DENABLE_SYSTEM_OPENSSL=ON \
-DENABLE_BUILD_EXAMPLES=OFF \
-DCMAKE_C_FLAGS="-flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata -Wno-error=profile-instr-unprofiled" \
-DCMAKE_CXX_FLAGS="-flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata -Wno-error=profile-instr-unprofiled -mcx16" \
-DCMAKE_EXE_LINKER_FLAGS="-flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata"
ninja -C /workspace/build -j2
# ==== 验证产物 ====
ls -la /workspace/build/bin/proxy_server
/workspace/build/bin/proxy_server --help 2>&1 | head -1 || true
ldd /workspace/build/bin/proxy_server 2>&1 | grep -E 'ssl|crypto' || true
PGO_EOF
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_x64_clang_lto_pgo
path: |
build/bin/proxy_server
build/bin/launcher
LinuxClangLtoPgoIoUring:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
# io_uring 会被 docker 默认 seccomp 拦截, 因此 profile 采集放到宿主机.
# 埋点二进制在容器内构建 (glibc <= 2.35), 宿主机 glibc 2.39 可直接运行.
- name: Install host dependencies for profile collection
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq libssl3t64 liburing2 libatomic1 curl python3 openssl
- name: Build proxy (clang + snmalloc + system openssl + io_uring, LTO+PGO)
run: |
set -euxo pipefail
# ===== Phase 1: 容器内 PGO 埋点构建 (io_uring) =====
docker run --rm -i \
-e DEBIAN_FRONTEND=noninteractive \
-v "$GITHUB_WORKSPACE":/workspace \
-w /workspace \
ubuntu:22.04 \
bash -s <<'PGO_INSTR'
set -euxo pipefail
apt-get update -qq
apt-get install -y -qq --no-install-recommends \
ca-certificates git cmake ninja-build pkg-config \
clang g++ libssl-dev liburing-dev curl python3 openssl llvm-14
# 容器以 root 运行, checkout 的仓库属于 runner 用户, 需要放行 safe.directory
# 否则 gitGetVersion 拿不到 commit hash. (需在安装 git 之后执行)
git config --global --add safe.directory /workspace
cmake -S /workspace -B /workspace/build-pgo-instr -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DENABLE_BUILD_WERROR=OFF \
-DENABLE_USE_IO_URING=ON \
-DENABLE_SNMALLOC_STATIC=ON -DENABLE_SYSTEM_OPENSSL=ON \
-DENABLE_BUILD_EXAMPLES=OFF \
-DCMAKE_C_FLAGS="-fprofile-instr-generate" \
-DCMAKE_CXX_FLAGS="-fprofile-instr-generate -mcx16" \
-DCMAKE_EXE_LINKER_FLAGS="-luring -fprofile-instr-generate"
ninja -C /workspace/build-pgo-instr -j2
PGO_INSTR
# ===== Phase 2: 宿主机采集 profile (io_uring 原生可用) =====
mkdir -p "$GITHUB_WORKSPACE/pgo-ci/cert"
openssl req -x509 -newkey rsa:2048 \
-keyout "$GITHUB_WORKSPACE/pgo-ci/cert/key.pem" \
-out "$GITHUB_WORKSPACE/pgo-ci/cert/cert.pem" \
-days 2 -nodes -subj "/CN=localhost" >/dev/null 2>&1
mkdir -p /tmp/www
dd if=/dev/urandom of=/tmp/www/blob.bin bs=1M count=256 status=none
(cd /tmp/www && python3 -m http.server 18080 --bind 127.0.0.1 >/dev/null 2>&1) &
HTTP_PID=$!
wait_port() {
local port=$1
for i in $(seq 1 50); do
(exec 3<>"/dev/tcp/127.0.0.1/$port") 2>/dev/null && break
sleep 0.2
done
}
wait_proxy() {
local port=$1 pid=$2
for i in $(seq 1 50); do
if ! kill -0 "$pid" 2>/dev/null; then
echo "FAIL: proxy (pid $pid) died before opening port $port" >&2
exit 1
fi
(exec 3<>"/dev/tcp/127.0.0.1/$port") 2>/dev/null && return 0
sleep 0.2
done
echo "FAIL: proxy (pid $pid) did not open port $port in time" >&2
exit 1
}
wait_exit() {
local pid=$1
for i in $(seq 1 100); do
kill -0 "$pid" 2>/dev/null || return 0
sleep 0.2
done
# 优雅退出失败则强杀, 避免 CI 挂起 (该次 profile 丢失, 不影响整体).
kill -KILL "$pid" 2>/dev/null || true
wait "$pid" 2>/dev/null || true
}
wait_port 18080
export LLVM_PROFILE_FILE="$GITHUB_WORKSPACE/pgo-ci/pgo-%p.profraw"
# Run 1: TLS 终结代理 -> SSL 引擎 + CONNECT 隧道 + HTTP 转发
"$GITHUB_WORKSPACE/build-pgo-instr/bin/proxy_server" \
--server_listen 127.0.0.1:18081 --auth_users "" --disable_logs 1 \
--ssl_certificate_dir "$GITHUB_WORKSPACE/pgo-ci/cert" >/dev/null 2>&1 &
TLS_PID=$!
wait_proxy 18081 "$TLS_PID"
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ --proxytunnel -o /dev/null http://127.0.0.1:18080/blob.bin
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ --proxytunnel -o /dev/null http://127.0.0.1:18080/blob.bin
curl -sS --proxy-insecure -x https://127.0.0.1:18081/ -o /dev/null http://127.0.0.1:18080/blob.bin
kill -TERM "$TLS_PID"
wait_exit "$TLS_PID"
# Run 2: 明文 HTTP 代理 -> 非 TLS 转发路径
"$GITHUB_WORKSPACE/build-pgo-instr/bin/proxy_server" \
--server_listen 127.0.0.1:18082 --auth_users "" --disable_logs 1 >/dev/null 2>&1 &
PLAIN_PID=$!
wait_proxy 18082 "$PLAIN_PID"
curl -sS -x http://127.0.0.1:18082 -o /dev/null http://127.0.0.1:18080/blob.bin
kill -TERM "$PLAIN_PID"
wait_exit "$PLAIN_PID"
unset LLVM_PROFILE_FILE
kill "$HTTP_PID" 2>/dev/null || true
nprof=$(ls "$GITHUB_WORKSPACE"/pgo-ci/*.profraw 2>/dev/null | wc -l)
echo "collected $nprof profraw file(s)"
[ "$nprof" -ge 1 ] || { echo "FAIL: no profile collected"; exit 1; }
# ===== Phase 3: 容器内合并 profile + LTO+PGO 最终构建 (io_uring) =====
docker run --rm -i \
-e DEBIAN_FRONTEND=noninteractive \
-v "$GITHUB_WORKSPACE":/workspace \
-w /workspace \
ubuntu:22.04 \
bash -s <<'PGO_FINAL'
set -euxo pipefail
apt-get update -qq
apt-get install -y -qq --no-install-recommends \
ca-certificates git cmake ninja-build pkg-config \
clang g++ libssl-dev liburing-dev curl python3 openssl llvm-14
# 容器以 root 运行, checkout 的仓库属于 runner 用户, 需要放行 safe.directory
# 否则 gitGetVersion 拿不到 commit hash. (需在安装 git 之后执行)
git config --global --add safe.directory /workspace
llvm-profdata-14 merge /workspace/pgo-ci/*.profraw -o /workspace/pgo-ci/merged.profdata
rm -rf /workspace/build-pgo-instr
cmake -S /workspace -B /workspace/build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DENABLE_BUILD_WERROR=OFF \
-DENABLE_USE_IO_URING=ON \
-DENABLE_SNMALLOC_STATIC=ON -DENABLE_SYSTEM_OPENSSL=ON \
-DENABLE_BUILD_EXAMPLES=OFF \
-DCMAKE_C_FLAGS="-flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata -Wno-error=profile-instr-unprofiled" \
-DCMAKE_CXX_FLAGS="-flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata -Wno-error=profile-instr-unprofiled -mcx16" \
-DCMAKE_EXE_LINKER_FLAGS="-luring -flto=thin -fprofile-instr-use=/workspace/pgo-ci/merged.profdata"
ninja -C /workspace/build -j2
ls -la /workspace/build/bin/proxy_server
/workspace/build/bin/proxy_server --help 2>&1 | head -1 || true
PGO_FINAL
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-linux_x64_clang_lto_pgo_iouring
path: |
build/bin/proxy_server
build/bin/launcher
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: |
brew install cmake ninja
- name: "Build proxy (Universal Binary: x86_64 + arm64)"
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_BUILD_WERROR=OFF \
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" \
-DCMAKE_OSX_DEPLOYMENT_TARGET=13.0 \
-G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-macos-universal
path: |
build/bin/proxy_server
build/bin/launcher
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: proxy_server-msvc_x64
path: |
build/bin/release/proxy_server.exe
build/bin/release/launcher.exe