diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..8f73972a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +osx_image: xcode7.2 +language: objective-c +before_install: +- brew update +- brew outdated xctool || brew upgrade xctool +- brew install carthage +script: ci/build +notifications: + email: false diff --git a/ci/build b/ci/build new file mode 100755 index 00000000..5bee5d4d --- /dev/null +++ b/ci/build @@ -0,0 +1,6 @@ +#!/bin/bash + +git submodule update --init --recursive +carthage bootstrap --platform Mac +xcodebuild +xcodebuild -scheme MacPass -target MacPass -configuration Release