Skip to content

Commit

Permalink
feat: trying to fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed Nov 13, 2023
1 parent 646251b commit 7031ea4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 7031ea4

Please sign in to comment.