File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : objective-c
2
2
3
- install :
4
- - gem install xcpretty
5
-
6
3
env :
7
4
global :
8
5
- LC_CTYPE=en_US.UTF-8
@@ -16,7 +13,7 @@ matrix:
16
13
- osx_image : xcode10.1
17
14
env : SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64" SWIFT_VERSION="4.2" ACTION="test"
18
15
- osx_image : xcode10.2
19
- env : SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64" SWIFT_VERSION="5.0" ACTION="test"
16
+ env : SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64" SWIFT_VERSION="5.0" ACTION="test" POD_LINT="YES"
20
17
- osx_image : xcode10.2
21
18
env : SCHEME="iOS" SDK="iphonesimulator" DESTINATION="OS=12.0,name=iPhone 8" SWIFT_VERSION="5.0" ACTION="test"
22
19
- osx_image : xcode10.2
@@ -25,8 +22,15 @@ matrix:
25
22
env : SCHEME="watchOS" SDK="watchsimulator" DESTINATION="OS=4.0,name=Apple Watch - 42mm" SWIFT_VERSION="5.0" ACTION="build"
26
23
27
24
before_install :
25
+ - if [ $POD_LINT == "YES" ]; then
26
+ gem install cocoapods -v '1.7.5';
27
+ pod repo update;
28
+ fi
28
29
- carthage bootstrap --platform "$SCHEME" --verbose
29
30
31
+ install :
32
+ - gem install xcpretty
33
+
30
34
script :
31
35
- set -o pipefail
32
36
- xcodebuild -version
@@ -42,6 +46,9 @@ script:
42
46
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES
43
47
GCC_GENERATE_TEST_COVERAGE_FILES=YES
44
48
SWIFT_VERSION=$SWIFT_VERSION
49
+ - if [ $POD_LINT == "YES" ]; then
50
+ pod lib lint --verbose;
51
+ fi
45
52
46
53
after_success :
47
54
- bash <(curl -s https://codecov.io/bash) -J ReSwift-Thunk
You can’t perform that action at this time.
0 commit comments