Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
marmelroy committed Jan 17, 2016
1 parent fee0149 commit 853024c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ before_install:
- xcrun simctl list
install: echo "<3"
env:
- MODE=build
- MODE=framework
- MODE=examples
script: ./build.sh $MODE

Expand Down
6 changes: 3 additions & 3 deletions build.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ trap trap_handler INT TERM EXIT

MODE="$1"

if [ "$MODE" = "build" ]; then
echo "Building Zip."
if [ "$MODE" = "framework" ]; then
echo "Building and testing Zip."
xctool \
-project Zip.xcodeproj \
-scheme Zip \
-sdk "$SDK" \
-destination "$PLATFORM" \
build
build test
trap - EXIT
exit 0
fi
Expand Down

0 comments on commit 853024c

Please sign in to comment.