File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 11language : objective-c
22
3- install :
4- - gem install xcpretty
5-
63env :
74 global :
85 - LC_CTYPE=en_US.UTF-8
@@ -16,7 +13,7 @@ matrix:
1613 - osx_image : xcode10.1
1714 env : SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64" SWIFT_VERSION="4.2" ACTION="test"
1815 - 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"
2017 - osx_image : xcode10.2
2118 env : SCHEME="iOS" SDK="iphonesimulator" DESTINATION="OS=12.0,name=iPhone 8" SWIFT_VERSION="5.0" ACTION="test"
2219 - osx_image : xcode10.2
@@ -25,8 +22,15 @@ matrix:
2522 env : SCHEME="watchOS" SDK="watchsimulator" DESTINATION="OS=4.0,name=Apple Watch - 42mm" SWIFT_VERSION="5.0" ACTION="build"
2623
2724before_install :
25+ - if [ $POD_LINT == "YES" ]; then
26+ gem install cocoapods -v '1.7.5';
27+ pod repo update;
28+ fi
2829 - carthage bootstrap --platform "$SCHEME" --verbose
2930
31+ install :
32+ - gem install xcpretty
33+
3034script :
3135 - set -o pipefail
3236 - xcodebuild -version
@@ -42,6 +46,9 @@ script:
4246 GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES
4347 GCC_GENERATE_TEST_COVERAGE_FILES=YES
4448 SWIFT_VERSION=$SWIFT_VERSION
49+ - if [ $POD_LINT == "YES" ]; then
50+ pod lib lint --verbose;
51+ fi
4552
4653after_success :
4754 - bash <(curl -s https://codecov.io/bash) -J ReSwift-Thunk
You can’t perform that action at this time.
0 commit comments