This commit is contained in:
Roy Sprowl 2018-02-27 11:37:56 -08:00
Родитель a4311af16f
Коммит df0182d12e
2 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

20
jenkins/osx_xcode_native.sh Executable file
Просмотреть файл

@ -0,0 +1,20 @@
#!/bin/bash
# Copyright (c) Microsoft. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
set -e
script_dir=$(cd "$(dirname "$0")" && pwd)
build_root=$(cd "${script_dir}/.." && pwd)
build_folder=$build_root"/cmake"
CORES=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu)
rm -r -f $build_folder
mkdir -p $build_folder
pushd $build_folder
cmake .. -Drun_unittests:bool=ON -G Xcode
cmake --build . -- --jobs=$CORES
ctest -C "debug" -V
popd