There was an error while loading. Please reload this page.
1 parent 0916abc commit 466d76dCopy full SHA for 466d76d
.travis.yml
@@ -0,0 +1,34 @@
1
+language: objective-c
2
+
3
+install:
4
+ - gem install xcpretty
5
6
+env:
7
+ global:
8
+ - LC_CTYPE=en_US.UTF-8
9
+ - LANG=en_US.UTF-8
10
+ - APP_NAME="SwiftFlowGitHubBrowser"
11
12
+osx_image: xcode9
13
14
+matrix:
15
+ include:
16
+ - env: SDK="iphonesimulator" DESTINATION="OS=11.0,name=iPhone 8"
17
18
+before_install:
19
+ - carthage bootstrap
20
21
+script:
22
+ - set -o pipefail
23
+ - xcodebuild -version
24
+ - xcodebuild -showsdks
25
+ - xcodebuild
26
+ -project "$APP_NAME.xcodeproj"
27
+ -scheme "$APP_NAME"
28
+ -sdk "$SDK"
29
+ -destination "$DESTINATION"
30
+ -configuration Debug
31
+ ONLY_ACTIVE_ARCH=YES
32
+ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES
33
+ GCC_GENERATE_TEST_COVERAGE_FILES=YES
34
+ test
0 commit comments