forked from marmelroy/ObjectiveKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·32 lines (25 loc) · 717 Bytes
/
build.sh
File metadata and controls
executable file
·32 lines (25 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# **** Update me when new Xcode versions are released! ****
PLATFORM="platform=iOS Simulator,OS=10.0,name=iPhone 7"
SDK="iphonesimulator10.0"
# It is pitch black.
set -e
function trap_handler() {
echo -e "\n\nOh no! You walked directly into the slavering fangs of a lurking grue!"
echo "**** You have died ****"
exit 255
}
trap trap_handler INT TERM EXIT
MODE="$1"
if [ "$MODE" = "framework" ]; then
echo "Building and testing ObjectiveKit.framework."
xcodebuild \
-project ObjectiveKit.xcodeproj \
-scheme ObjectiveKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
build test
trap - EXIT
exit 0
fi
echo "Unrecognised mode '$MODE'."