We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcf8bb9 commit 250bea7Copy full SHA for 250bea7
1 file changed
.github/workflows/run_unit_tests.yml
@@ -50,7 +50,11 @@ jobs:
50
51
- name: Install build and test dependencies (Windows)
52
if: startsWith(matrix.os, 'windows')
53
- run: pip install meson ninja
+ run: |
54
+ # remove broken pkg-config that causes Meson warnings
55
+ del 'C:\\Strawberry\\perl\\bin\\pkg-config'
56
+ del 'C:\\Strawberry\\perl\\bin\\pkg-config.BAT'
57
+ pip install meson ninja
58
59
- name: Build and install library
60
shell: bash
@@ -76,7 +80,7 @@ jobs:
76
80
esac
77
81
;;
78
82
79
- meson setup builddir --werror $setup_args
83
+ meson setup builddir --fatal-meson-warnings --werror $setup_args
84
DEBUG_DICT=1 meson compile -C builddir
85
$sudo meson install -C builddir
86
0 commit comments