From 0e40d6ef1599cc4f248e5f71d03ac9a4ee2d2fe9 Mon Sep 17 00:00:00 2001 From: Ash Furrow Date: Tue, 24 Oct 2017 17:31:29 -0400 Subject: [PATCH] Moves to Circle CI. --- .travis.yml | 8 -------- circle.yml | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 .travis.yml create mode 100644 circle.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9e0ad74..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -osx_image: xcode8.3 -language: objective-c -podfile: Demo/Podfile -cache: cocoapods -before_install: - - pod repo update - -script: cd Demo ; set -o pipefail && xcodebuild -workspace 'Demo.xcworkspace' -scheme 'Demo' -configuration 'Debug' -sdk iphonesimulator -destination 'name=iPhone 6s' build test | xcpretty -c --test diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..a46a449 --- /dev/null +++ b/circle.yml @@ -0,0 +1,8 @@ +machine: + xcode: + version: 9.0 + environment: + LANG: en_US.UTF-8 +test: + override: + - cd Demo ; set -o pipefail && xcodebuild -workspace 'Demo.xcworkspace' -scheme 'Demo' -configuration 'Debug' -sdk iphonesimulator -destination 'name=iPhone 6s' build test