This commit is contained in:
2024-07-17 16:35:39 -06:00
parent fa6db361bc
commit 8ba3160798

View File

@@ -51,11 +51,11 @@ jobs:
with:
submodules: true
- name: Build zlib for linux
run: cmake -S . -B build -D CMAKE_EXE_LINKER_FLAGS=-static -D CMAKE_SHARED_LINKER_FLAGS=-static && cmake --install .
run: cmake -S . -B build -D CMAKE_EXE_LINKER_FLAGS=-static -D CMAKE_SHARED_LINKER_FLAGS=-static && ls deps/zlib/build
working-directory: deps/zlib
if: ${{ matrix.os == 'ubuntu' }}
- name: Build zlib for windows
run: cmake -S . -B build -D CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded && cmake --install .
run: cmake -S . -B build -D CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded && ls deps/zlib/build
working-directory: deps/zlib
if: ${{ matrix.os == 'windows' }}
- name: Cache Boost