Skip to content

Commit 5215249

Browse files
Run pod linter for one Travis configuration (#33)
* run pod linter for one of the Travis configurations * use more recent CocoaPods on Travis for pod linting
1 parent 78fef45 commit 5215249

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.travis.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
language: objective-c
22

3-
install:
4-
- gem install xcpretty
5-
63
env:
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

2724
before_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+
3034
script:
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

4653
after_success:
4754
- bash <(curl -s https://codecov.io/bash) -J ReSwift-Thunk

0 commit comments

Comments
 (0)