This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Makes formattedWithStyle forLocale public (#56) Fixes #53. * [development]: Removes Slather step Generating coverage in CI just seems so unstable. * Swift 2.3 (#61) * [MNY-60]: Recreates Swift 2.3 framework * [MNY-60]: Refactors CI pipeline * [MNY-60]: Fixes upload script * [MNY-60]: Updates build dependencies * [MNY-60]: Shares Money scheme Every time I forget to do this. * [MNY-60]: Fixes deployment targets for iOS * [MNY-60]: Fixes tvOS platform tests * [MNY-60]: Restores minimum version of OSX to 10.11 This is to match ValueCoding * [1.8.0]: Fixes issues raised by podspec linter * [1.8.0]: Bumps the version to 1.8.0
- Loading branch information
Showing
44 changed files
with
1,174 additions
and
2,164 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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
steps: | ||
- | ||
name: ":fastlane: Test Mac OS X" | ||
command: .ci/scripts/test-osx | ||
name: "macOS" | ||
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_mac" | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
xcode: "$XCODE" | ||
- | ||
name: ":fastlane: Test iOS" | ||
command: .ci/scripts/test-ios | ||
name: "iOS" | ||
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_ios" | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
iOS-Simulator: true | ||
xcode: "$XCODE" | ||
- | ||
type: "waiter" | ||
- | ||
name: ":muscle: Send Coverage" | ||
command: .ci/scripts/send-coverage | ||
name: "tvOS" | ||
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_tvos" | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
iOS-Simulator: true | ||
xcode: "$XCODE" |
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,37 +1,14 @@ | ||
platform :ios do | ||
|
||
desc "Runs all the tests" | ||
lane :test do | ||
|
||
carthage( | ||
platform: "iOS" | ||
) | ||
|
||
scan( | ||
scheme: "Money-iOS", | ||
output_directory: ".ci/xcodebuild-data/", | ||
xcargs: "-derivedDataPath .ci/xcodebuild-data/" | ||
) | ||
|
||
end | ||
|
||
lane :test_ios do | ||
carthage(platform: "iOS") | ||
scan(scheme: "Money", destination: "platform=iOS Simulator,OS=10.0,name=iPhone 6s") | ||
end | ||
|
||
platform :mac do | ||
|
||
desc "Runs all the tests" | ||
lane :test do | ||
|
||
carthage( | ||
platform: "Mac" | ||
) | ||
lane :test_mac do | ||
carthage(platform: "Mac") | ||
scan(scheme: "Money", destination: "platform=macOS") | ||
end | ||
|
||
scan( | ||
scheme: "Money-OSX", | ||
output_directory: ".ci/xcodebuild-data/", | ||
xcargs: "-derivedDataPath .ci/xcodebuild-data/" | ||
) | ||
|
||
end | ||
|
||
lane :test_tvos do | ||
carthage(platform: "tvOS") | ||
scan(scheme: "Money", destination: "platform=tvOS Simulator,OS=10.0,name=Apple TV 1080p") | ||
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
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 @@ | ||
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 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 @@ | ||
github "danthorpe/ValueCoding" | ||
github "danthorpe/ValueCoding" "1.5.0" |
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 @@ | ||
github "danthorpe/ValueCoding" "1.3.0" | ||
github "danthorpe/ValueCoding" "1.5.0" |
Oops, something went wrong.