Update c-cpp.yml

This commit is contained in:
Vladimir Dubrovin 2026-03-30 12:39:30 +03:00
parent 637d5e5539
commit 27b4c69dd9

View File

@ -43,9 +43,12 @@ jobs:
run: copy Makefile.win Makefile run: copy Makefile.win Makefile
- name: make Windows - name: make Windows
if: ${{ startsWith(matrix.target, '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"' run: make all 'LIBS=-L "c:/program files/openssl/lib/VC/x64/MT"' 'CFLAGS=-I "c:/program files/openssl/include"'
- name: make POSIX - name: make Ubuntu
if: !${{ startsWith(matrix.target, 'windows') }} if: ${{ startsWith(matrix.target, 'ubuntu') }}
run: make
- name: make MacOS
if: ${{ startsWith(matrix.target, 'macos') }}
run: make run: make
- name: mkdir - name: mkdir
if: ${{ startsWith(matrix.target, 'ubuntu') }} if: ${{ startsWith(matrix.target, 'ubuntu') }}