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