Skip to content

Commit

Permalink
Basic CircleCI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
0xced committed Oct 14, 2016
1 parent 8088454 commit 9e1f4ac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
machine:
xcode:
version: 8.0
environment:
SCAN_CONFIGURATION: "Release"
SCAN_DESTINATION: "platform=iOS Simulator,name=iPhone 5s"
SCAN_OUTPUT_DIRECTORY: "$CIRCLE_ARTIFACTS"
SCAN_XCARGS: "RUN_CLANG_STATIC_ANALYZER=YES"

dependencies:
pre:
# Need bundler < 1.13.{1,2,3} because of https://github.com/bundler/bundler/issues/5000
- gem uninstall bundler -v '>1.12.5' --force || echo "bundler >1.12.5 is not installed"
- gem install bundler -v 1.12.5 --no-rdoc --no-ri --no-document --quiet
- gem install scan --no-rdoc --no-ri --no-document --quiet

test:
override:
- scan

0 comments on commit 9e1f4ac

Please sign in to comment.