-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
.goreleaser.yml
69 lines (69 loc) · 1.75 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
builds:
- main: ./cmd/cayley
binary: cayley
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
ignore:
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
- goos: darwin
goarch: arm
- goos: darwin
goarch: arm64
ldflags:
- -s -w -X github.com/cayleygraph/cayley/version.Version={{.Version}} -X github.com/cayleygraph/cayley/version.GitHash={{.FullCommit}} -X github.com/cayleygraph/cayley/version.BuildDate={{.Date}}
archives:
- format: tar.gz
format_overrides:
- goos: windows
format: zip
wrap_in_directory: true
files:
- README.md
- LICENSE
- AUTHORS
- CONTRIBUTORS
- configurations/*
- data/*
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-dev"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^ci:"
snapcrafts:
- name: cayley
publish: false # TODO(dennwc): enable build when the package is reviewed
summary: Open-source graph inspired by Freebase and Google's Knowledge Graph.
description: |
Cayley is an open-source graph inspired by the graph database behind Freebase and Google's Knowledge Graph.
Its goal is to be a part of the developer's toolbox where Linked Data and graph-shaped data
(semantic webs, social networks, etc) in general are concerned.
grade: stable
confinement: strict
license: Apache-2.0
base: core18
apps:
cayley:
plugs: ["home", "network", "network-bind", "personal-files"]
plugs:
personal-files:
read:
- $HOME/.cayley
write:
- $HOME/.cayley