-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstep.yml
62 lines (52 loc) · 1.94 KB
/
step.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
title: Save Gradle Cache
summary: Saves Gradle caches. This Step needs to be used in combination with **Restore Gradle Cache**.
description: |
Saves Gradle dependency caches. This Step needs to be used in combination with **Restore Gradle Cache**.
This Step is based on [key-based caching](https://devcenter.bitrise.io/en/builds/caching/key-based-caching.html) and sets up the cache key and path automatically for Gradle. If you'd like to change the cache key (or paths to cache), you might want to use the generic [Save cache](https://github.com/bitrise-steplib/bitrise-step-save-cache) Step instead.
#### Related steps
[Restore Gradle cache](https://github.com/bitrise-steplib/bitrise-step-restore-gradle-cache/)
[Save cache](https://github.com/bitrise-steplib/bitrise-step-save-cache/)
website: https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache
source_code_url: https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache
support_url: https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache/issues
project_type_tags:
- android
- ios
- cordova
- ionic
- react-native
- flutter
type_tags:
- utility
run_if: .IsCI
is_skippable: true
toolkit:
go:
package_name: github.com/bitrise-steplib/bitrise-step-save-gradle-cache
deps:
brew:
- name: zstd
apt_get:
- name: zstd
inputs:
- verbose: "false"
opts:
title: Verbose logging
summary: Enable logging additional information for troubleshooting
is_required: true
value_options:
- "true"
- "false"
- compression_level: 3
opts:
title: Compression level
summary: Zstd compression level to control speed / archive size. Set to 1 for fastest option. Valid values are between 1 and 19. Defaults to 3.
is_required: false
- save_transforms: "false"
opts:
title: Save transforms
summary: Save transformed classes and resources under `$HOME/.gradle/caches/**/transforms`
is_required: true
value_options:
- "true"
- "false"