fastlane-plugin-firebase_test_lab 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -12
- data/lib/fastlane/plugin/firebase_test_lab/module.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbd4e213b317e9e8d7f0d821ee886d7fbfda3d5db1d249989106386ed97a6946
|
4
|
+
data.tar.gz: 790bff8ee421469632faa4bcbc7be9fcc2c8f313a00a2ec60e66845f72f3a88b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8eccd6d0dedc8826b8f3f906049cfb51f7fb5c657d684eba7b3790deca284d8f826e42d48b0ce46089e96907dffb148245e5075044823650c0a79a1584081059
|
7
|
+
data.tar.gz: 8fc304585e5f712912ad77c568ec899f619789189113fb7476014366ad3cf8da0c95ec93a849c306d70b3604267778db8d8ff7b664da3f40dc168ae6999c3d4f
|
data/README.md
CHANGED
@@ -1,14 +1,18 @@
|
|
1
|
-
# `Firebase Test Lab`
|
1
|
+
# `Firebase Test Lab` plugin for _fastlane_
|
2
2
|
|
3
|
-
This project is a [fastlane](https://fastlane.tools) plugin. You can add it to your
|
3
|
+
This project is a [fastlane](https://fastlane.tools) plugin. You can add it to your _fastlane_ project by running
|
4
4
|
|
5
5
|
```bash
|
6
6
|
fastlane add_plugin firebase_test_lab
|
7
7
|
```
|
8
8
|
|
9
|
+
---
|
10
|
+
|
11
|
+
[![fastlane Firebase Test Lab plugin](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-firebase_test_lab)
|
12
|
+
|
9
13
|
## About Firebase Test Lab plugin
|
10
14
|
|
11
|
-
[Firebase Test Lab](https://firebase.google.com/docs/test-lab/) let you easily test your iOS
|
15
|
+
[Firebase Test Lab](https://firebase.google.com/docs/test-lab/) let you easily test your iOS app (Android support forthcoming) on a variety of real or virtual devices and configurations. This plugin allows you to submit your app to Firebase Test Lab by adding an action into Fastfile.
|
12
16
|
|
13
17
|
## Getting started
|
14
18
|
|
@@ -19,7 +23,7 @@ You need to set up Firebase first. These only needs to be done once for an organ
|
|
19
23
|
- Go to the [Firebase Console](https://console.firebase.google.com/). Add Firebase into your Google Cloud project by clicking on "Add project" and then choose your just-created project..
|
20
24
|
|
21
25
|
### Configure Google credentials through service accounts
|
22
|
-
To authenticate, Google Cloud credentials will need to be set for any machine where
|
26
|
+
To authenticate, Google Cloud credentials will need to be set for any machine where _fastlane_ and this plugin runs on.
|
23
27
|
|
24
28
|
If you are running this plugin on Google Cloud [Compute Engine](https://cloud.google.com/compute), [Kubernetes Engine](https://cloud.google.com/kubernetes-engine) or [App Engine flexible environment](https://cloud.google.com/appengine/docs/flexible/), a default service account is automatically provisioned. You will not need to create a service account. See [this](https://cloud.google.com/compute/docs/access/service-accounts#compute_engine_default_service_account) for more details.
|
25
29
|
|
@@ -35,7 +39,7 @@ No matter you are a using an automatically provisioned service account or a manu
|
|
35
39
|
### Find out the devices you want to test on
|
36
40
|
If you have [gcloud tool](https://cloud.google.com/sdk/gcloud/), you can run
|
37
41
|
|
38
|
-
```
|
42
|
+
```no-highlight
|
39
43
|
gcloud beta firebase test ios models list
|
40
44
|
```
|
41
45
|
This will return a list of supported devices and their identifiers.
|
@@ -45,7 +49,7 @@ All available devices can also be seen [here](https://firebase.google.com/docs/t
|
|
45
49
|
|
46
50
|
## Actions
|
47
51
|
|
48
|
-
### firebase_test_lab_ios_xctest
|
52
|
+
### `firebase_test_lab_ios_xctest`
|
49
53
|
|
50
54
|
Submit your iOS app to Firebase Test Lab and run XCTest. Refer to [this document](https://firebase.google.com/docs/test-lab/ios/command-line) for more details about Firebase Test Lab specific arguments.
|
51
55
|
```ruby
|
@@ -70,7 +74,7 @@ firebase_test_lab_ios_xctest(
|
|
70
74
|
)
|
71
75
|
```
|
72
76
|
|
73
|
-
|
77
|
+
**Available parameters:**
|
74
78
|
|
75
79
|
- `app_path` You may provide a different path in the local filesystem (e.g: `/path/to/app-bundle.zip`) or on Google Cloud Storage (`gs://your-bucket/path/to/app-bundle.zip`) that points to an app bundle as specified [here](https://firebase.google.com/docs/test-lab/ios/command-line#build_xctests_for_your_app). If a Google Cloud Storage path is used, the service account must have read access to such file.
|
76
80
|
- `gcp_project` The Google Cloud project name for Firebase Test Lab to run on.
|
@@ -88,12 +92,12 @@ You can also join the Firebase slack channel [here](https://firebase.community/)
|
|
88
92
|
|
89
93
|
## Troubleshooting
|
90
94
|
|
91
|
-
For some more detailed help with plugins problems, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main
|
95
|
+
For some more detailed help with plugins problems, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main _fastlane_ repo.
|
92
96
|
|
93
|
-
## Using
|
97
|
+
## Using _fastlane_ Plugins
|
94
98
|
|
95
|
-
For more information about how the
|
99
|
+
For more information about how the _fastlane_ plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md) in the main _fastlane_ repo.
|
96
100
|
|
97
|
-
## About
|
101
|
+
## About _fastlane_
|
98
102
|
|
99
|
-
|
103
|
+
_fastlane_ automates building, testing, and releasing your app for beta and app store distributions. To learn more about _fastlane_, check out [fastlane.tools](https://fastlane.tools).
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-firebase_test_lab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shihua Zheng
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -183,5 +183,5 @@ rubyforge_project:
|
|
183
183
|
rubygems_version: 2.7.6
|
184
184
|
signing_key:
|
185
185
|
specification_version: 4
|
186
|
-
summary: Firebase Test Lab
|
186
|
+
summary: Test your app with Firebase Test Lab with ease using fastlane
|
187
187
|
test_files: []
|