From 82533b1a50c901c6d388f5df15093b186f0fb7d7 Mon Sep 17 00:00:00 2001 From: Vladimir Dubrovin <3proxy@3proxy.ru> Date: Sat, 4 Apr 2026 12:59:38 +0300 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index a2d2331..285d9f3 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -77,6 +77,10 @@ jobs: set "INCLUDE=%INCLUDE%;c:/program files/openssl/include;c:/vcpkg/installed/x64-windows/include" nmake /F Makefile.msvc64 nmake /F Makefile.msvc64 clean - - name: make Windows MSVC + - name: make with CMake POSIX + if: ${{ !startsWith(matrix.target, 'windows') }} run: mkdir build && cd build && cmake .. && make + - name: make with CMake Win + if: ${{ startsWith(matrix.target, 'windows') }} + run: mkdir build && cd build && cmake .. && dir