This repository has been archived by the owner on Jun 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for Objective-C bridging You still have to opt in to get the bridging support with `extension Foo: _ObjectiveCBridgeable { }` but this supplies the implementation of that protocol for ValueCoding types. * Support multiple platforms for multiple Swift versions (#19) * [VCD-19]: Reconfigures project * [VCD-19]: Removes Objective-C stuff * [VCD-19]: Updates CI & scripts * [VCD-19]: Adds bundle install step * [VCD-19]: Updates Ruby dependencies * [VCD-19]: Updates Fastfile destinations * [VCD-19]: Fixes bug with pipeline template * [VCD-19]: Changes scan to use destination value * [VCD-19]: Changes to 9.3 * [VCD-19]: Removes slather - its just the worst. * [VCD-19]: Attempts to add Codecov support * [VCD-19]: No idea how Codecov is supposed to work * [1.4.0]: Updates the CHANGELOG * [1.4.0]: Updates podspec
- Loading branch information
Showing
24 changed files
with
356 additions
and
1,477 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,21 +1,23 @@ | ||
steps: | ||
- | ||
name: ":muscle: Lint" | ||
name: "Lint" | ||
command: .ci/scripts/lint | ||
agents: | ||
iOS-Simulator: false | ||
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT" | ||
|
||
- | ||
name: ":fastlane: Test Mac OS X" | ||
name: "Mac" | ||
command: .ci/scripts/test-osx | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
iOS-Simulator: false | ||
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT" | ||
- | ||
name: ":fastlane: Test iOS" | ||
name: "iOS" | ||
command: .ci/scripts/test-ios | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
- | ||
type: "waiter" | ||
- | ||
name: ":muscle: Send Coverage" | ||
command: .ci/scripts/send-coverage | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
iOS-Simulator: true | ||
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT" | ||
env: | ||
FL_SLATHER_BUILDKITE_ENABLED: true | ||
FL_SLATHER_COVERALLS_ENABLED: true |
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,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle exec fastlane lint | ||
bundle install --quiet && bundle exec fastlane lint |
This file was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle exec fastlane ios test | ||
bundle install --quiet && bundle exec fastlane ios test | ||
|
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,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle exec fastlane mac test | ||
bundle install --quiet && bundle exec fastlane mac test |
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,7 @@ | ||
comment: | ||
layout: header, changes, diff | ||
coverage: | ||
ignore: | ||
- Tests/.* | ||
status: | ||
patch: false |
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,14 @@ | ||
{ | ||
"author": "Daniel Thorpe", | ||
"author_url": "http://danthorpe.me", | ||
"github_url": "https://github.com/danthorpe/ValueCoding", | ||
"module": "ValueCoding", | ||
"module_version": "1.4.0", | ||
"readme": "README.md", | ||
"swift_version": "2.2", | ||
"xcodebuild_arguments": [ | ||
"-project", "ValueCoding.xcodeproj", | ||
"-scheme", "ValueCoding" | ||
], | ||
"exclude": ["Tests"] | ||
} |
This file was deleted.
Oops, something went wrong.
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.