-
-
Notifications
You must be signed in to change notification settings - Fork 875
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Integrate ParseFacebookUtilsV4 * Integrate ParseTwitterUtils * Integrate ParseUI * Distribute all packages through subspecs
- Loading branch information
1 parent
2032def
commit 0f5a33c
Showing
823 changed files
with
26,859 additions
and
638 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
defaults: &defaults | ||
macos: | ||
xcode: "9.0" | ||
shell: /bin/bash --login -eo pipefail | ||
aliases: | ||
- &prepare | ||
| | ||
git submodule update --init --recursive | ||
gem install bundler | ||
bundle install | ||
- &filter-only-master | ||
branches: | ||
only: | ||
- master | ||
|
||
version: 2 | ||
jobs: | ||
ios: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:ios | ||
- run: bash <(curl -s https://codecov.io/bash) | ||
- store_test_results: | ||
path: build/reports | ||
macos: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:macos | ||
- run: bash <(curl -s https://codecov.io/bash) | ||
- store_test_results: | ||
path: build/reports | ||
facebook_utils: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:facebook_utils:ios | ||
- run: bash <(curl -s https://codecov.io/bash) | ||
- store_test_results: | ||
path: build/reports | ||
twitter_utils: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:twitter_utils:ios | ||
- run: bash <(curl -s https://codecov.io/bash) | ||
- store_test_results: | ||
path: build/reports | ||
parseui: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:parseui:all | ||
deployment: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: | | ||
xcrun simctl create "Apple TV 1080p" com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p com.apple.CoreSimulator.SimRuntime.tvOS-11-0 | ||
bundle exec rake test:deployment | ||
jazzy: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: ./Scripts/jazzy.sh | ||
carthage: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:carthage | ||
cocoapods: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: bundle exec rake test:cocoapods | ||
publish-cocoapods: | ||
<<: *defaults | ||
steps: | ||
- checkout | ||
- run: *prepare | ||
- run: ./Scripts/publish.sh | ||
|
||
workflows: | ||
version: 2 | ||
pr: | ||
jobs: | ||
- ios | ||
- macos | ||
- facebook_utils | ||
- twitter_utils | ||
- parseui | ||
- jazzy | ||
nightly: | ||
jobs: | ||
- deployment | ||
- cocoapods: | ||
requires: | ||
- deployment | ||
- carthage: | ||
requires: | ||
- deployment | ||
triggers: | ||
- schedule: | ||
cron: "0 1 * * *" | ||
filters: *filter-only-master | ||
publish: | ||
jobs: | ||
- hold: | ||
type: approval | ||
filters: *filter-only-master | ||
- publish-cocoapods: | ||
requires: | ||
- hold | ||
filters: *filter-only-master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,4 @@ docs/ | |
|
||
## AppCode | ||
.idea/ | ||
ParseFacebookUtils/Vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.1 | ||
ruby-2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.