Lines Matching full:build
7 BUILD="$(mktemp --directory --tmpdir=.)"
8 trap 'rm -rf "$BUILD"' EXIT
32 CC=gcc CXX=g++ CFLAGS=-fanalyzer meson setup "$BUILD"
33 meson compile -C "$BUILD"
34 meson test -C "$BUILD"
38 # -DNDEBUG to the compiler for the library implementation. This 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"
54 # Ensure the build completes for maintenance purposes. Note that tests are
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"