forked from RxSwiftCommunity/RxFirebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request RxSwiftCommunity#12 from RxSwiftCommunity/feature/…
…swift-4.2 Feature/swift 4.2
- Loading branch information
Showing
18 changed files
with
409 additions
and
422 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,21 @@ | ||
#!/bin/bash | ||
for pod in $(find . -name "*.podspec" -type f -exec basename {} ';' );do | ||
push=0 | ||
if [[ $1 == 'push' ]]; then | ||
push=1 | ||
fi | ||
if [[ $pod == 'RxFirebase.podspec' ]]; then | ||
continue | ||
fi | ||
command="$pod --allow-warnings" | ||
if [[ $push == 0 ]]; then | ||
command="pod lib lint $command" | ||
else | ||
command="pod trunk push $command" | ||
fi | ||
echo $command | ||
$command ; result=$? | ||
if [[ $result != 0 ]]; then | ||
exit $result | ||
fi | ||
done |
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 @@ | ||
4.0 | ||
4.2 |
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,13 +1,13 @@ | ||
language: swift | ||
osx_image: xcode9.2 | ||
|
||
install: true | ||
|
||
osx_image: xcode10.1 | ||
install: | ||
script: | ||
# https://github.com/travis-ci/travis-ci/issues/4190 | ||
# Output something every 9 minutes (540 seconds) or Travis kills the job | ||
- while sleep 540; do echo "=====[ $SECONDS seconds still running ]====="; done & | ||
- sh .scripts/pod_lib.sh | ||
# Kill the sleep loop | ||
- kill %1 | ||
before_install: | ||
- gem install cocoapods | ||
- pod --version | ||
script: | ||
- pod repo update && pod update | ||
- set -o pipefail | ||
- xcodebuild -workspace RxFirebase.xcworkspace -scheme Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c | ||
- travis_wait 30 pod lib lint RxFirebase.podspec |
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 |
---|---|---|
@@ -1,17 +1,11 @@ | ||
platform :ios, '8.0' | ||
use_frameworks! | ||
|
||
target 'RxFirebase_Example' do | ||
pod 'RxFirebase/Firestore', :path => './' | ||
pod 'RxFirebase/RemoteConfig', :path => './' | ||
pod 'RxFirebase/Database', :path => './' | ||
pod 'RxFirebase/Storage', :path => './' | ||
pod 'RxFirebase/Auth', :path => './' | ||
pod 'RxFirebase/Functions', :path => './' | ||
|
||
target 'RxFirebase_Tests' do | ||
inherit! :search_paths | ||
|
||
end | ||
platform :ios, '8.0' | ||
pod 'RxFirebaseStorage', :path => './' | ||
pod 'RxFirebaseFirestore', :path => './' | ||
pod 'RxFirebaseRemoteConfig', :path => './' | ||
pod 'RxFirebaseDatabase', :path => './' | ||
pod 'RxFirebaseFunctions', :path => './' | ||
pod 'RxFirebaseAuthentication', :path => './' | ||
end | ||
|
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
Oops, something went wrong.