From 09307ccafb968eb42c310f75c3c40b73b4080c92 Mon Sep 17 00:00:00 2001 From: Lenucksi Date: Wed, 23 Dec 2015 13:37:49 +0100 Subject: [PATCH] Enable Travis CI --- .travis.yml | 9 +++++++++ ci/build | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 .travis.yml create mode 100755 ci/build 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