mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-07 13:08:10 +02:00
Imported c-siphash code with command: git subtree add --prefix shared/c-siphash/ git@github.com:c-util/c-siphash.git master --squash To update the library use: git subtree pull --prefix shared/c-siphash/ git@github.com:c-util/c-siphash.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}"
|