From 27b4c69dd97a8d74d4fe09848f492186ce85ac85 Mon Sep 17 00:00:00 2001 From: Vladimir Dubrovin <3proxy@3proxy.ru> Date: Mon, 30 Mar 2026 12:39:30 +0300 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 16d1037..d516090 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -43,9 +43,12 @@ jobs: run: copy Makefile.win Makefile - name: make Windows if: ${{ startsWith(matrix.target, 'windows') }} - run: make all LIBS='-L "c:/program files/openssl/lib/VC/x64/MT"' CFLAGS='-I "c:/program files/openssl/include"' - - name: make POSIX - if: !${{ startsWith(matrix.target, 'windows') }} + run: make all 'LIBS=-L "c:/program files/openssl/lib/VC/x64/MT"' 'CFLAGS=-I "c:/program files/openssl/include"' + - name: make Ubuntu + if: ${{ startsWith(matrix.target, 'ubuntu') }} + run: make + - name: make MacOS + if: ${{ startsWith(matrix.target, 'macos') }} run: make - name: mkdir if: ${{ startsWith(matrix.target, 'ubuntu') }}