penguin/tinyproxy

An L4 proxy designed to act as a tiny transparent shim

commit 5c0a464503fe642cc9c960a5aa81241f918dad66

author斟酌 鵬兄 <tgckpg@gmail.com>
date2026-06-09T20:39:46Z
subjectFixed missing build params
commit 5c0a464503fe642cc9c960a5aa81241f918dad66
Author: 斟酌 鵬兄 <tgckpg@gmail.com>
Date:   2026-06-09T20:39:46Z

    Fixed missing build params
---
 .github/workflows/cmake-multi-platform.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml
index 247475b..106f47b 100644
--- a/.github/workflows/cmake-multi-platform.yml
+++ b/.github/workflows/cmake-multi-platform.yml
@@ -92,10 +92,10 @@ jobs:
 
           mkdir -p dist/debug dist/prod
 
-          make clean all STATIC=1 EXTRA_CFLAGS="-Og -g3 -Wpedantic"
+          make clean all STATIC=1 EXTRA_CFLAGS="-Og -g3 -Wpedantic" LIBEVENT_SRC=./libevent
           cp bin/tinyproxy dist/debug/tinyproxy
 
-          make clean all STATIC=1
+          make clean all STATIC=1 LIBEVENT_SRC=./libevent
           cp bin/tinyproxy dist/prod/tinyproxy
           strip dist/prod/tinyproxy
 
@@ -217,7 +217,7 @@ jobs:
                 python3 \
                 ca-certificates
 
-              make clean all
+              make clean all LIBEVENT_SRC=./libevent
 
               make test \
                 CONCURRENCY=20 \