12 строки
365 B
Bash
12 строки
365 B
Bash
|
#!/bin/bash
|
||
|
# Copyright (c) Microsoft. All rights reserved.
|
||
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||
|
|
||
|
build_root=$(cd "$(dirname "$0")/.." && pwd)
|
||
|
cd $build_root/sdk/c-utility/build_all/linux
|
||
|
|
||
|
# -- C --
|
||
|
./build.sh --run-unittests --run_valgrind --build-root $build_root "$@" #-x
|
||
|
[ $? -eq 0 ] || exit $?
|
||
|
|