fastlane-plugin-aws_device_farm 0.1.2.pre.alpha.pre.1 → 0.1.2.pre.alpha.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +5 -11
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTVlNDhhYTQxMTE5MDk3YjhiOWI5YzJiZGRmMDQwN2MyYzQ1OGNiMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YmNlNDYxMmM4ZjEzYTVhNmYzNzY0Y2I2YzJmOTJhNDg3MjM4NzFhMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGQ4MjlkYjQ5NmE5NzliZDYwYjYyZTE1MDY5NDIyZTc0MmM0ZTkzY2UwZTRl
|
10
|
+
Y2ZmYjhmODEyZTE0ZWRlODdmNGY5YzliZmE0OTYzOGYxZmZhNWI3NzBmMDZl
|
11
|
+
MjFhYzM2ZTkyN2Y2Y2RlZTY0YjU2M2JlOTU5MmM3ODY1MGZkMTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2I4YmQ1NWQ1OTE3MjQ2MTBkYzM4YWQ4NTYxMDg5YjkxN2M0NmUxZDllYzFh
|
14
|
+
NzkyYTQ3NDEwNDEwMDhhNTA5OTM5MGY1OWRlZjI2ZTg3ZTQ3ZjExODM4MWM4
|
15
|
+
YmZkZGY5Nzc0NDQ4NGEwNDQ5NWRhNjgwNzU5ZmJiZWExOWQ1YWU=
|
data/README.md
CHANGED
@@ -28,7 +28,7 @@ Select the devices you want to run the tests on.
|
|
28
28
|
### Create a project on AWS
|
29
29
|
in this example we called this `fastlane`
|
30
30
|
|
31
|
-
## Example
|
31
|
+
## Example iOS
|
32
32
|
|
33
33
|
```ruby
|
34
34
|
lane :aws_device_run_ios do
|
@@ -40,7 +40,7 @@ lane :aws_device_run_ios do
|
|
40
40
|
name: 'fastlane',
|
41
41
|
binary_path: 'aws/packages/app.ipa',
|
42
42
|
test_binary_path: 'aws/packages/runner.ipa',
|
43
|
-
device_pool: '
|
43
|
+
device_pool: 'iOS',
|
44
44
|
wait_for_completion: true
|
45
45
|
)
|
46
46
|
end
|
@@ -59,14 +59,14 @@ lane :aws_device_run_android do
|
|
59
59
|
name: 'fastlane',
|
60
60
|
binary_path: 'app/build/outputs/apk/app-debug.apk',
|
61
61
|
test_binary_path: 'app/build/outputs/apk/app-debug-androidTest-unaligned.apk',
|
62
|
-
device_pool: '
|
62
|
+
device_pool: 'Android',
|
63
63
|
wait_for_completion: true
|
64
64
|
)
|
65
65
|
end
|
66
66
|
```
|
67
67
|
|
68
68
|
|
69
|
-
##
|
69
|
+
## iOS Build IPA's
|
70
70
|
You could use something like this.
|
71
71
|
after this you have `aws/packages/app.ipa` and `aws/packages/runner.ipa`
|
72
72
|
|
@@ -95,7 +95,7 @@ end
|
|
95
95
|
```
|
96
96
|
|
97
97
|
|
98
|
-
##
|
98
|
+
## Android Build APK's
|
99
99
|
you could use something like this.
|
100
100
|
after this you have the app-apk in `app/build/outputs/apk/app-debug.apk` and the testrunner in `app/build/outputs/apk/app-debug-androidTest-unaligned.apk`
|
101
101
|
|
@@ -112,17 +112,11 @@ added the following:
|
|
112
112
|
* improve output
|
113
113
|
* make it available as a `fastlane` plugin
|
114
114
|
|
115
|
-
## Issues and Feedback
|
116
|
-
|
117
|
-
For any other issues and feedback about this plugin, please submit it to this repository.
|
118
115
|
|
119
116
|
## Troubleshooting
|
120
117
|
|
121
118
|
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
|
122
119
|
|
123
|
-
## Using `fastlane` Plugins
|
124
|
-
|
125
|
-
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).
|
126
120
|
|
127
121
|
## About `fastlane`
|
128
122
|
|