Skip to content

Commit

Permalink
Build CI: fix mysy2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Jun 28, 2024
1 parent a8e8c6e commit 7b3f1ef
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,17 +167,11 @@ jobs:
Remove-Item -Path C:\Strawberry\ -Recurse
choco install pkgconfiglite
echo "PKG_CONFIG_PATH=C:/lib/pkgconfig" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Adjust pkg-config PATH (Windows MYSYS2)
if:
run: |
echo "PKG_CONFIG_PATH=C:/:$PKG_CONFIG_PATH" >> "$GITHUB_ENV"
env
- name: Configure
run: |
cd oopetris
meson setup build -Dbuildtype=release -Ddefault_library=static -Dclang_libcpp=${{ ( ( matrix.config.os == 'ubuntu' && matrix.config.use-clang == true && matrix.config.use-clang_stdlib ) || matrix.config.os == 'macos' ) && 'enabled' || 'disabled' }} -Donly_build_libs=true ${{ matrix.config.os == 'windows' && '-Db_vscrt=static_from_buildtype' || '' }}
meson setup build -Dbuildtype=release -Ddefault_library=static -Dclang_libcpp=${{ ( ( matrix.config.os == 'ubuntu' && matrix.config.use-clang == true && matrix.config.use-clang_stdlib ) || matrix.config.os == 'macos' ) && 'enabled' || 'disabled' }} -Donly_build_libs=true ${{ matrix.config.os == 'windows' && '-Db_vscrt=static_from_buildtype' || '' }} ${{ (matrix.config.os == 'windows' && ( matrix.config.environment == 'mingw' || matrix.config.environment == 'ucrt' )) && '-Dprefix=C:/msys64${MINGW_PREFIX}/' || ''}}
- name: Build and install Libs
if: matrix.config.os != 'ubuntu'
Expand Down

0 comments on commit 7b3f1ef

Please sign in to comment.