File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ before_install:
17
17
- locale
18
18
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
19
19
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
20
+ - brew update
21
+ - brew upgrade carthage
20
22
- pod --version
21
23
- pod setup --silent > /dev/null
22
24
- pod repo update --silent
@@ -28,7 +30,13 @@ script:
28
30
- set -o pipefail
29
31
30
32
- echo Check if the library described by the podspec can be built
31
- - pod lib lint --allow-warnings
33
+ # - pod lib lint --allow-warnings
34
+
35
+ - echo Build as dynamic frameworks
36
+ - carthage update --platform ios,tvos,macos --configuration DEBUG
37
+ - xcodebuild build clean -project SDWebImageSVGCoder.xcodeproj -scheme 'SDWebImageSVGCoder iOS' -sdk iphonesimulator PLATFORM_NAME=iphonesimulator -configuration Debug | xcpretty -c
38
+ - xcodebuild build clean -project SDWebImageSVGCoder.xcodeproj -scheme 'SDWebImageSVGCoder tvOS' -sdk appletvsimulator -configuration Debug | xcpretty -c
39
+ - xcodebuild build clean -project SDWebImageSVGCoder.xcodeproj -scheme 'SDWebImageSVGCoder macOS' -sdk macosx -configuration Debug | xcpretty -c
32
40
33
41
- echo Build example
34
42
- pod install --project-directory=Example
You can’t perform that action at this time.
0 commit comments