Lines Matching full:meson
10 meson format --recursive --inplace || true
13 echo Your changes must meet the upstream meson style guide
32 CC=gcc CXX=g++ CFLAGS=-fanalyzer meson setup "$BUILD"
33 meson compile -C "$BUILD"
34 meson test -C "$BUILD"
41 meson configure --buildtype=release "$BUILD"
42 meson compile -C "$BUILD"
43 meson test -C "$BUILD" --timeout-multiplier 10 --wrapper 'valgrind --error-exitcode=1'
47 meson configure --buildtype=debug "$BUILD"
48 meson configure -Dabi=deprecated,stable "$BUILD"
50 meson configure -Dabi-compliance-check=true "$BUILD"
51 meson compile -C "$BUILD"
52 meson test -C "$BUILD"
56 meson configure -Dabi=stable,testing "$BUILD"
57 meson configure -Dabi-compliance-check=false "$BUILD"
58 meson configure -Dtests=false "$BUILD"
59 meson compile -C "$BUILD"