-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.goreleaser.yml
More file actions
85 lines (77 loc) · 1.3 KB
/
.goreleaser.yml
File metadata and controls
85 lines (77 loc) · 1.3 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
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
version: 2
project_name: lumen
before:
hooks:
- apt-get update -qq
- apt-get install -y libsqlite3-dev
- cp /usr/include/sqlite3.h /usr/x86_64-w64-mingw32/include/sqlite3.h
builds:
- id: macos
main: .
binary: lumen
flags:
- -tags=fts5
ldflags:
- -s -w
env:
- CGO_ENABLED=1
- CC=o64-clang
- CXX=o64-clang++
goos:
- darwin
goarch:
- amd64
- arm64
- id: linux-amd64
main: .
binary: lumen
flags:
- -tags=fts5
ldflags:
- -s -w
env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
- id: linux-arm64
main: .
binary: lumen
flags:
- -tags=fts5
ldflags:
- -s -w
env:
- CGO_ENABLED=1
- CC=aarch64-linux-gnu-gcc
goos:
- linux
goarch:
- arm64
- id: windows
main: .
binary: lumen
flags:
- -tags=fts5
ldflags:
- -s -w
env:
- CGO_ENABLED=1
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
goos:
- windows
goarch:
- amd64
archives:
- id: default
formats:
- binary
name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}'
checksum:
name_template: checksums.txt
release:
github:
owner: ory
name: lumen