forked from ernoaapa/eliot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
86 lines (74 loc) · 1.52 KB
/
.goreleaser.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
builds:
- binary: eli
main: ./cmd/eli
goos:
- darwin
- linux
goarch:
- amd64
- arm64
- arm
goarm:
- 6
- 7
env:
- CGO_ENABLED=0
- binary: eliotd
main: ./cmd/eliotd
goos:
- linux
goarch:
- amd64
- arm64
- arm
goarm:
- 6
- 7
env:
- CGO_ENABLED=0
archive:
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
brew:
name: eli
github:
owner: ernoaapa
name: homebrew-eliot
homepage: "http://eliot.run"
description: "Container management system for IoT devices"
test: |
system "#{bin}/eli --version"
dockers:
- binary: eli
goos: linux
goarch: amd64
image: ernoaapa/eli
dockerfile: Dockerfile.eli
tag_templates:
- "v{{ .Version }}"
- binary: eliotd
goos: linux
goarch: amd64
image: ernoaapa/eliotd
dockerfile: Dockerfile.eliotd
tag_templates:
- "v{{ .Version }}-amd64"
- binary: eliotd
goos: linux
goarch: arm64
image: ernoaapa/eliotd
dockerfile: Dockerfile.eliotd
tag_templates:
- "v{{ .Version }}-arm64"
nfpm:
homepage: http://www.eliot.run
maintainer: Erno Aapa <[email protected]>
description: "Container management system for IoT devices"
license: Apache 2.0
formats:
- deb
dependencies:
- containerd (>= 1.1.0)
files:
"build/etc/systemd/system/eliotd.service": "/etc/systemd/system/eliotd.service"
config_files:
"build/etc/eliotd/config": "/etc/eliotd/config"