~vanvugt/mir/fix-1261637

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Native build script for Mir
#
set -e

BUILD_DIR=build-linux-x86
if [ ! -e ${BUILD_DIR} ]; then
    mkdir ${BUILD_DIR}
    ( cd ${BUILD_DIR} && cmake ..)
fi

cmake --build ${BUILD_DIR}

GTEST_OUTPUT=xml:./
${BUILD_DIR}/bin/mir_acceptance_tests
${BUILD_DIR}/bin/mir_integration_tests
${BUILD_DIR}/bin/mir_unit_tests