From 7031ea461f66228c437465490134a3187b325100 Mon Sep 17 00:00:00 2001 From: Igor Machado Date: Mon, 13 Nov 2023 01:35:30 +0000 Subject: [PATCH] feat: trying to fix windows --- .github/workflows/multiplatform.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/multiplatform.yml b/.github/workflows/multiplatform.yml index 74b2067..571e55e 100644 --- a/.github/workflows/multiplatform.yml +++ b/.github/workflows/multiplatform.yml @@ -57,10 +57,17 @@ jobs: shell: bash run: | make load_thirdparty - - name: make optframe_lib_cmake + - name: make optframe_lib (ubuntu) shell: bash + if: contains(matrix.os, 'ubuntu') + run: | + make optframe_lib + - name: make optframe_lib_cmake (windows) + if: contains(matrix.os, 'windows') run: | - make optframe_lib_cmake + cmake -S. -Bbuild -GNinja + ninja -Cbuild + mv optframe/liboptframe_lib.so optframe/optframe_lib.so - name: make test_package shell: bash run: |