From 78eda5aa46fe23b11ea79364d8401e310387757f Mon Sep 17 00:00:00 2001 From: Vladimir Dubrovin <3proxy@3proxy.ru> Date: Fri, 14 Mar 2025 20:24:24 +0300 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index e6e3a72..c4f874b 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -32,11 +32,13 @@ jobs: - name: ln Windows if: ${{ startsWith(matrix.target, 'windows') }} run: copy Makefile.win Makefile - - name: dir Windows + - name: dirs Windows if: ${{ startsWith(matrix.target, 'windows') }} run: cmd /C 'echo LIBS := -L "c:/program files/openssl/lib" $(LIBS) >>Makefile.win && echo CFLAGS := -I "c:/program files/openssl/include" $(CFLAGS) >>Makefile.win && type Makefile.win' - - name: make -# if: ${{ !startsWith(matrix.target, 'windows') }} + - name: SSLPlugin Linux + if: ${{ !startsWith(matrix.target, 'windows') }} + run: 'echo PLUGINS := $(PLUGINS) SSLPlugin >>Makefile & echo LIBS := $(LIBS) -l:libcrypto.a -l:libssl.a >>Makefile' + - name: make run: make - name: mkdir if: ${{ startsWith(matrix.target, 'ubuntu') }}