From e878289e94c88df11831a7fa4fa2504dc3b8227c Mon Sep 17 00:00:00 2001 From: Andrea Bizzotto Date: Mon, 3 Oct 2016 19:03:19 +0100 Subject: [PATCH] Add. test build script --- scripts/build-all.sh | 9 +++++++++ scripts/test-amtool.sh | 4 ++++ 2 files changed, 13 insertions(+) create mode 100755 scripts/build-all.sh create mode 100755 scripts/test-amtool.sh diff --git a/scripts/build-all.sh b/scripts/build-all.sh new file mode 100755 index 0000000..28656f3 --- /dev/null +++ b/scripts/build-all.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Build amtool +source ./scripts/build-amtool.sh + +# Run unit tests +source ./scripts/test-amtool.sh + + diff --git a/scripts/test-amtool.sh b/scripts/test-amtool.sh new file mode 100755 index 0000000..4a15081 --- /dev/null +++ b/scripts/test-amtool.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +xcodebuild test -project AcceptanceMark.xcodeproj -scheme amtool-tests -sdk macosx10.12 ONLY_ACTIVE_ARCH=NO +