diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ebe15a1c..7ede0d53b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,14 +107,15 @@ jobs: - name: Compile env: - PKG_CONFIG_PATH: BUILD_native_mixed\INSTALL\lib\pkgconfig;BUILD_native_static\INSTALL\lib\pkgconfig + PKG_CONFIG_PATH: ${{ github.workspace }}\BUILD_native_mixed\INSTALL\lib\pkgconfig;${{ github.workspace }}BUILD_native_static\INSTALL\lib\pkgconfig CC: cl.exe CXX: cl.exe - CFLAGS: -IBUILD_native_static\INSTALL\include run: | - meson.exe setup build . -Ddefault_library=static - type build/meson-logs/meson-log.txt - meson.exe compile -C build --verbose + mkdir build + cd build + meson.exe setup . .. -Ddefault_library=static + type meson-logs/meson-log.txt + meson.exe compile --verbose - name: Test shell: cmd