Skip to content

Commit

Permalink
Move in build dir before running
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Dec 6, 2023
1 parent 93898a2 commit aaaeaa4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aaaeaa4

Please sign in to comment.