Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ jobs:
@echo off
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set PKG_CONFIG_PATH=%VCPKG_INSTALLED_DIR%\lib\pkgconfig
set PATH=%VCPKG_INSTALLED_DIR%\bin;%PATH%
set CC=clang-cl
meson setup builddir -Ddefault_library=static -Dwerror=true

Expand All @@ -193,6 +194,7 @@ jobs:
run: |
@echo off
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set PATH=%VCPKG_INSTALLED_DIR%\bin;%PATH%
meson test -C builddir --print-errorlogs --suite unit

- name: Upload meson logs on failure
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:
@echo off
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set PKG_CONFIG_PATH=%VCPKG_INSTALLED_DIR%\lib\pkgconfig
set PATH=%VCPKG_INSTALLED_DIR%\bin;%PATH%
set CC=clang-cl
meson setup builddir -Ddefault_library=static -Dwerror=true

Expand All @@ -146,6 +147,7 @@ jobs:
run: |
@echo off
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set PATH=%VCPKG_INSTALLED_DIR%\bin;%PATH%
meson test -C builddir --print-errorlogs --suite unit

- name: Upload meson logs on failure
Expand Down
Loading