mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 13:40:10 +01:00
Imported c-list code with command: git subtree add --prefix shared/c-list/ git@github.com:c-util/c-list.git master --squash To update the library use: git subtree pull --prefix shared/c-list/ git@github.com:c-util/c-list.git master --squash
12 lines
270 B
Bash
Executable file
12 lines
270 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -Rf "./ci-build"
|
|
mkdir "./ci-build"
|
|
cd "./ci-build"
|
|
|
|
${CHERRY_LIB_MESONSETUP} . "${CHERRY_LIB_SRCDIR}"
|
|
${CHERRY_LIB_NINJABUILD}
|
|
${CHERRY_LIB_MESONTEST}
|
|
(( ! CHERRY_LIB_VALGRIND )) || ${CHERRY_LIB_MESONTEST} "--wrapper=${CHERRY_LIB_VALGRINDWRAP}"
|