-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.bonsai.yml
More file actions
52 lines (47 loc) · 1.58 KB
/
.bonsai.yml
File metadata and controls
52 lines (47 loc) · 1.58 KB
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
---
description: '#{repo}'
builds:
- platform: 'linux'
arch: 'amd64'
asset_filename: '#{repo}_#{version}_linux_amd64.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'linux'"
- "entity.system.arch == 'amd64'"
- platform: 'linux'
arch: '386'
asset_filename: '#{repo}_#{version}_linux_386.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'linux'"
- "entity.system.arch == '386'"
- platform: 'linux'
arch: 'arm64'
asset_filename: '#{repo}_#{version}_linux_arm64.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'linux'"
- "entity.system.arch == 'arm64'"
- platform: 'linux'
arch: 'armv7'
asset_filename: '#{repo}_#{version}_linux_armv7.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'linux'"
- "entity.system.arch == 'arm'"
- 'entity.system.arm_version == 7'
- platform: 'linux'
arch: 'armv6'
asset_filename: '#{repo}_#{version}_linux_armv6.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'linux'"
- "entity.system.arch == 'arm'"
- 'entity.system.arm_version == 6'
- platform: 'Windows'
arch: 'amd64'
asset_filename: '#{repo}_#{version}_windows_amd64.tar.gz'
sha_filename: '#{repo}_#{version}_sha512-checksums.txt'
filter:
- "entity.system.os == 'windows'"
- "entity.system.arch == 'amd64'"