fastlane-plugin-dynatrace 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a4bb1f32d9beb111e957c5247455a16fac1fdc31ab91efd0f3821e3bffdd707
|
|
4
|
+
data.tar.gz: 62b51b71bce9470c3fdae48c6c1d83d59d2f92430729a3b289e51465460b5e3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ff43ef6e41476bcaa630ac0fedb477349be4abe547ca301b5950de67528270795b4d1f6eefa5fee5d5fc22a2405739c969aead5dc35289ce299d0ee802b20e6
|
|
7
|
+
data.tar.gz: 2b52fe099e14027b341f6ec05056303772e9359e4707e96b610388a979fe9c1e24963938151ad76135afac467a4a95eea6ffa3ca86e997c1550a8528b9e6c2f4
|
data/README.md
CHANGED
|
@@ -114,6 +114,7 @@ dynatrace_process_symbols(
|
|
|
114
114
|
| version | The CFBundleVersion (iOS, tvOS) / versionCode (Android). Is also used for the dSYM download. | |
|
|
115
115
|
| symbolsfile | Path to the dSYM file to be processed. If downloadDsyms is set, this is only a fallback. | |
|
|
116
116
|
| server | The API endpoint for the Dynatrace environment (e.g. `https://environmentID.live.dynatrace.com` or `https://dynatrace-managed.com/e/environmentID`). | |
|
|
117
|
+
| cleanBuildArtifacts | Clean build artifacts after processing. | `true` |
|
|
117
118
|
| debugMode | Enable debug logging. | false |
|
|
118
119
|
|
|
119
120
|
## App Store Connect Two-Factor-Authentication
|
|
@@ -135,7 +136,7 @@ You can generate a session by running `fastlane spaceauth -u user@email.com` on
|
|
|
135
136
|
Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
|
136
137
|
|
|
137
138
|
## Tests
|
|
138
|
-
This plugin includes a set of RSpec unit tests, which can be executed by running `
|
|
139
|
+
This plugin includes a set of RSpec unit tests, which can be executed by running `bundle exec rspec spec`.
|
|
139
140
|
|
|
140
141
|
## Issues and Feedback
|
|
141
142
|
For any other issues and feedback about this plugin, please submit it to this repository or contact [Dynatrace Support](https://support.dynatrace.com).
|
|
@@ -158,8 +158,10 @@ module Fastlane
|
|
|
158
158
|
end
|
|
159
159
|
})
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
if params[:cleanBuildArtifacts]
|
|
162
|
+
UI.message "Cleaning build artifacts"
|
|
163
|
+
Fastlane::Actions::CleanBuildArtifactsAction.run(exclude_pattern: nil)
|
|
164
|
+
end
|
|
163
165
|
end
|
|
164
166
|
|
|
165
167
|
def self.description
|
|
@@ -266,6 +268,12 @@ module Fastlane
|
|
|
266
268
|
UI.user_error!("Please provide your environment API endpoint. Pass using `server: 'server'`") unless (value and not value.empty?)
|
|
267
269
|
end),
|
|
268
270
|
|
|
271
|
+
FastlaneCore::ConfigItem.new(key: :cleanBuildArtifacts,
|
|
272
|
+
env_name: "FL_UPLOAD_TO_DYNATRACE_CLEAN_BUILD_ARTIFACTS",
|
|
273
|
+
default_value: true,
|
|
274
|
+
is_string: false,
|
|
275
|
+
description: "Clean build artifacts after processing"),
|
|
276
|
+
|
|
269
277
|
FastlaneCore::ConfigItem.new(key: :debugMode,
|
|
270
278
|
env_name: "FL_UPLOAD_TO_DYNATRACE_DEBUG_MODE",
|
|
271
279
|
description: "Enable debug logging",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-dynatrace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dynatrace LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|