Skip to content

Commit

Permalink
Update CI settings
Browse files Browse the repository at this point in the history
 - Use Xcode 7.1
 - Install dependencies manually via git submodules
 - update our bin/test script to work with xcodebuild instead of xctool
  • Loading branch information
gfontenot committed Nov 9, 2015
1 parent 3f923dd commit e394477
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
11 changes: 9 additions & 2 deletions bin/test
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/bin/bash
#!/usr/bin/env sh

set -o pipefail

xcrun xcodebuild \
-workspace Argo.xcworkspace \
-scheme Argo-Mac \
test \
| xcpretty --color

xctool -project Argo.xcodeproj -scheme Argo-Mac -sdk macosx clean test
12 changes: 9 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
machine:
environment:
XCODE_SCHEME: Argo-Mac
xcode:
version: 6.3.1
version: "7.1"

dependencies:
override:
- git submodule update --init --recursive

test:
override:
- bin/test

0 comments on commit e394477

Please sign in to comment.