Skip to content

Commit

Permalink
Add kokoro continuous build script. (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey authored and ajsecord committed Oct 4, 2017
1 parent a25b7b0 commit ac9cc4b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .kokoro
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

# Fail on any error.
set -e
# Display commands to stderr.
set -x

gem install xcpretty --no-rdoc --no-ri --no-document --quiet

sudo xcode-select --switch /Applications/Xcode_8.2.app/Contents/Developer
xcodebuild -version

cd github/repo
xcodebuild clean build -project CatalogByConvention/CatalogByConvention.xcodeproj -sdk "iphonesimulator" | xcpretty

bash <(curl -s https://codecov.io/bash)

0 comments on commit ac9cc4b

Please sign in to comment.