forked from kahing/goofys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
50 lines (46 loc) · 1.35 KB
/
.goreleaser.yaml
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
before:
hooks:
- make get-deps
- make build
builds:
-
binary: goofys
ldflags: -s -w -X=github.com/voyvodov/goofys/internal.VersionNumber={{.Tag}} -X=github.com/voyvodov/goofys/internal.VersionHash={{ .ShortCommit }}
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
archives:
- name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: 32bit
amd64: 64bit
checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch
nfpms:
-
vendor: Red Sift Ltd.
license: Apache
maintainer: Red Sift <[email protected]>
description: |-
Goofys allows you to mount an S3 bucket as a filey system.
It's a Filey System instead of a File System because goofys strives for
performance first and POSIX second.
Particularly things that are difficult to support on S3 or would translate into
more than one round-trip would either fail (random writes) or faked (no per-file permission).
Goofys does not have an on disk data cache (checkout catfs), and consistency model is close-to-open.
formats:
- deb