We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1121c4 + 9e71e30 commit d2721edCopy full SHA for d2721ed
Makefile
@@ -1,6 +1,10 @@
1
BUILD_TOOL = xcodebuild
2
BUILD_SCHEME = SQLite Mac
3
-BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
+ifeq ($(BUILD_SCHEME),SQLite iOS)
4
+ BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)" -sdk iphonesimulator
5
+else
6
+ BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
7
+endif
8
9
XCPRETTY := $(shell command -v xcpretty)
10
SWIFTCOV := $(shell command -v swiftcov)
run-tests.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -ev
if [ -n "$BUILD_SCHEME" ]; then
- make test
+ make test BUILD_SCHEME="$BUILD_SCHEME"
elif [ -n "$VALIDATOR_SUBSPEC" ]; then
cd CocoaPodsTests && make test
-fi
+fi
0 commit comments