Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit d952005

Browse files
HeEAaDflovilmart
authored andcommitted
Fix pod lib lint (#179)
* [TravisCI] upgrade to Xcode 10.1, run a complete pod lib lint, add a workaround for Cocoapods < 1.6.0 * publish.sh: add workaround for CocoaPods < 1.6.0 * [CircleCI] remove redundant pod spec lint
1 parent 8b61b4c commit d952005

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.circleci/config.yml

-9
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,6 @@ jobs:
5050
- checkout
5151
- run: *prepare
5252
- run: carthage build --no-skip-current --platform macos,ios
53-
cocoapods:
54-
<<: *defaults
55-
steps:
56-
- checkout
57-
- run: *prepare
58-
- run: |
59-
bundle exec pod repo update --silent;
60-
pod lib lint ParseLiveQuery.podspec;
6153

6254
workflows:
6355
version: 2
@@ -68,7 +60,6 @@ workflows:
6860
- demo
6961
nightly:
7062
jobs:
71-
- cocoapods
7263
- carthage
7364
triggers:
7465
- schedule:

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ branches:
44
- /^v?[0-9]+\.[0-9]+\.[0-9]+(-.*)?$/
55
language: objective-c
66
os: osx
7-
osx_image: xcode9
7+
osx_image: xcode10.1
88
cache:
99
- cocoapods
1010
install: bundle install
@@ -13,7 +13,7 @@ jobs:
1313
include:
1414
- stage: distribution
1515
env: CocoaPods
16-
script: bundle exec pod spec lint ParseLiveQuery.podspec --quick
16+
script: EXPANDED_CODE_SIGN_IDENTITY="-" EXPANDED_CODE_SIGN_IDENTITY_NAME="-" bundle exec pod lib lint --allow-warnings
1717
deploy:
1818
provider: script
1919
skip_cleanup: true

publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
rvm use $(< .ruby-version) --install --binary --fuzzy
33
gem install bundler
44
bundle install
5-
bundle exec pod trunk push ParseLiveQuery.podspec --allow-warnings
5+
EXPANDED_CODE_SIGN_IDENTITY="-" EXPANDED_CODE_SIGN_IDENTITY_NAME="-" bundle exec pod trunk push ParseLiveQuery.podspec --allow-warnings

0 commit comments

Comments
 (0)