-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgradle-cache.hcl
More file actions
37 lines (30 loc) · 1022 Bytes
/
gradle-cache.hcl
File metadata and controls
37 lines (30 loc) · 1022 Bytes
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
description = "Gradle build cache restore/save tool backed by S3"
homepage = "https://github.com/block/bundle-cache"
binaries = ["gradle-cache"]
test = "gradle-cache --help"
# macOS: one universal binary for both Intel and Apple Silicon.
darwin {
source = "https://github.com/block/bundle-cache/releases/download/${version}/gradle-cache-darwin-universal"
rename = {"gradle-cache-darwin-universal": "gradle-cache"}
}
# Linux amd64
linux {
arch = "amd64"
source = "https://github.com/block/bundle-cache/releases/download/${version}/gradle-cache-linux-amd64"
rename = {"gradle-cache-linux-amd64": "gradle-cache"}
}
# Linux arm64
linux {
arch = "arm64"
source = "https://github.com/block/bundle-cache/releases/download/${version}/gradle-cache-linux-arm64"
rename = {"gradle-cache-linux-arm64": "gradle-cache"}
}
channel "latest" {
update = "24h"
version = "*"
auto-version {
github-release = "block/bundle-cache"
version-pattern = "v(.*)"
}
}
version "0.1.0" {}