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 +