https://github.com/tbrand/fastlane-plugin-bluepill
Fastlane plugin to use Bluepill powered by LinkedIn
https://github.com/tbrand/fastlane-plugin-bluepill
bluepill fastlane fastlane-ios fastlane-plugin
Last synced: 7 months ago
JSON representation
Fastlane plugin to use Bluepill powered by LinkedIn
- Host: GitHub
- URL: https://github.com/tbrand/fastlane-plugin-bluepill
- Owner: tbrand
- License: bsd-2-clause
- Created: 2017-03-16T13:09:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-07T14:02:02.000Z (about 8 years ago)
- Last Synced: 2024-04-25T17:41:53.691Z (over 1 year ago)
- Topics: bluepill, fastlane, fastlane-ios, fastlane-plugin
- Language: Ruby
- Size: 354 KB
- Stars: 15
- Watchers: 7
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bluepill plugin
[](https://rubygems.org/gems/fastlane-plugin-bluepill)
[](https://travis-ci.org/tbrand/fastlane-plugin-bluepill)
[](https://badge.fury.io/rb/fastlane-plugin-bluepill)
## Getting Started
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-bluepill`, add it to your project by running:
```bash
fastlane add_plugin bluepill
```
## About Bluepill
[Bluepill](https://github.com/linkedin/bluepill) is powered by LinkedIn. By using this plugin, you can run iOS tests in parallel using multiple simulators.
## Example
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
Sample code
```ruby
lane :test do
bluepill(
app: 'path/to/SomeApp.app',
scheme: 'path/to/SomeApp.xcscheme',
xctestrun: 'path/to/SomeApp.xctestrun',
output_dir: 'path/to/output_dir',
device: 'iPhone 6',
number_of_simulators: 2,
headless: true,
reuse_simulator: true,
)
end
```
## Run tests for this plugin
To run both the tests, and code style validation, run
```
rake
```
To automatically fix many of the styling issues, use
```
rubocop -a
```
## Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
## Troubleshooting
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
## Using `fastlane` Plugins
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
## About `fastlane`
`fastlane` is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
## License of Bluepill
BSD 2-CLAUSE LICENSE
Copyright 2016 LinkedIn Corporation.
All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.