mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-26 23:44:18 +02:00
Move test build dirs to _build*
This commit is contained in:
parent
5856b3c9c5
commit
09c75e5a15
3 changed files with 12 additions and 12 deletions
|
|
@ -7,9 +7,9 @@ RESULT=0
|
|||
# shellcheck disable=SC2164
|
||||
cd "${MESONCURRENTCONFIGDIR}"
|
||||
echo "Build standard release build"
|
||||
rm -rf test/test-w-o-warnings
|
||||
meson setup test/test-w-o-warnings -Dxwayland=true -Dman-pages=true --buildtype=release --fatal-meson-warnings || RESULT=1
|
||||
ninja -C test/test-w-o-warnings || RESULT=1
|
||||
rm -rf test/test-w-o-warnings
|
||||
rm -rf _build-w-o-warnings
|
||||
meson setup _build-w-o-warnings -Dxwayland=true -Dman-pages=true --buildtype=release --fatal-meson-warnings || RESULT=1
|
||||
ninja -C _build-w-o-warnings || RESULT=1
|
||||
rm -rf _build-w-o-warnings
|
||||
|
||||
exit "${RESULT}"
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@ RESULT=0
|
|||
# shellcheck disable=2164
|
||||
cd "${MESONCURRENTCONFIGDIR}"
|
||||
echo "Build without xwayland"
|
||||
rm -rf test/test-w-o-xwayland
|
||||
meson setup test/test-w-o-xwayland -Dxwayland=false -Dman-pages=false --buildtype=release --fatal-meson-warnings || RESULT=1
|
||||
ninja -C test/test-w-o-xwayland || RESULT=1
|
||||
rm -rf test/test-w-o-xwayland
|
||||
rm -rf _build-w-o-xwayland
|
||||
meson setup _build-w-o-xwayland -Dxwayland=false -Dman-pages=false --buildtype=release --fatal-meson-warnings || RESULT=1
|
||||
ninja -C _build-w-o-xwayland || RESULT=1
|
||||
rm -rf _build-w-o-xwayland
|
||||
|
||||
exit "${RESULT}"
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ RESULT=0
|
|||
|
||||
# shellcheck disable=2164
|
||||
cd "${MESONCURRENTCONFIGDIR}"
|
||||
rm -rf test/test-scan-build
|
||||
meson setup test/test-scan-build -Dxwayland=true -Dman-pages=true --buildtype=release || RESULT=1
|
||||
SCANBUILD="$(pwd)/test/testing-configurations/my-scan-build" ninja -C test/test-scan-build scan-build || RESULT=1
|
||||
rm -rf test/test-scan-build
|
||||
rm -rf _build-scan-build
|
||||
meson setup _build-scan-build -Dxwayland=true -Dman-pages=true --buildtype=release || RESULT=1
|
||||
SCANBUILD="$(pwd)/test/testing-configurations/my-scan-build" ninja -C _build-scan-build scan-build || RESULT=1
|
||||
rm -rf _build-scan-build
|
||||
|
||||
exit "${RESULT}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue