Skip to content

Commit d2721ed

Browse files
committed
Merge branch 'master' into connection-pool
2 parents a1121c4 + 9e71e30 commit d2721ed

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
BUILD_TOOL = xcodebuild
22
BUILD_SCHEME = SQLite Mac
3-
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
3+
ifeq ($(BUILD_SCHEME),SQLite iOS)
4+
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)" -sdk iphonesimulator
5+
else
6+
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
7+
endif
48

59
XCPRETTY := $(shell command -v xcpretty)
610
SWIFTCOV := $(shell command -v swiftcov)

run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -ev
33
if [ -n "$BUILD_SCHEME" ]; then
4-
make test
4+
make test BUILD_SCHEME="$BUILD_SCHEME"
55
elif [ -n "$VALIDATOR_SUBSPEC" ]; then
66
cd CocoaPodsTests && make test
7-
fi
7+
fi

0 commit comments

Comments
 (0)