Skip to content

Commit

Permalink
ci: always link statically
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Oct 14, 2024
1 parent 619fd7b commit c63c476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Build and Install OOPetris
run: |
cd oopetris
meson setup build -Dbuildtype=release -Ddefault_library=shared -Dclang_libcpp=${{ matrix.config.os == 'macos' && 'enabled' || 'disabled' }} -Donly_build_libs=true ${{ matrix.config.os == 'windows' && '-Db_vscrt=from_buildtype' || '' }}
meson setup build -Dbuildtype=release -Ddefault_library=static -Dclang_libcpp=${{ matrix.config.os == 'macos' && 'enabled' || 'disabled' }} -Donly_build_libs=true ${{ matrix.config.os == 'windows' && '-Db_vscrt=static_from_buildtype' || '' }}
${{ matrix.config.os == 'ubuntu' && 'sudo' || '' }} meson install -C build
${{ matrix.config.os == 'ubuntu' && 'sudo ldconfig' || '' }}
Expand Down

0 comments on commit c63c476

Please sign in to comment.