blob: 819e366c7d7b58e74089f08c67cc6d94c0b3c724 [file] [log] [blame]
Billy Donahuebbb54ef2015-08-31 02:19:39 -04001#!/usr/bin/env sh
Billy Donahue520d30c2015-08-31 09:54:37 -04002set -evx
Billy Donahuebbb54ef2015-08-31 02:19:39 -04003env | sort
4
Billy Donahuefbb0b962015-09-01 02:24:48 -04005mkdir build || true
Herbert Thielend33861d2017-08-29 17:41:26 +02006cd build
Billy Donahue6fc49052015-09-01 02:41:55 -04007cmake -Dgtest_build_samples=ON \
8 -Dgmock_build_samples=ON \
9 -Dgtest_build_tests=ON \
10 -Dgmock_build_tests=ON \
deki517b3bd2015-09-07 18:23:25 -040011 -DCMAKE_CXX_FLAGS=$CXX_FLAGS \
Herbert Thielencc246ec2017-08-30 11:59:36 +020012 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
Herbert Thielend33861d2017-08-29 17:41:26 +020013 ..
Billy Donahuefefba422015-08-31 10:29:11 -040014make
Arkadiy Shapkin43c0ae32016-06-25 01:29:18 +030015CTEST_OUTPUT_ON_FAILURE=1 make test