-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.goreleaser.yml
70 lines (70 loc) · 1.3 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
version: 2
project_name: periscope
before:
hooks:
- go mod download
builds:
- id: periscope-darwin-amd64
main: ./cmd/psc/
binary: psc
goos:
- darwin
goarch:
- amd64
env:
- CGO_ENABLED=1
- CC=o64-clang
- CXX=o64-clang++
- id: periscope-darwin-arm64
main: ./cmd/psc/
binary: psc
goos:
- darwin
goarch:
- arm64
env:
- CGO_ENABLED=1
- CC=oa64-clang
- CXX=oa64-clang++
- id: periscope-linux-amd64
main: ./cmd/psc/
binary: psc
goos:
- linux
goarch:
- amd64
env:
- CGO_ENABLED=1
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
- id: periscope-linux-arm64
main: ./cmd/psc/
binary: psc
goos:
- linux
goarch:
- arm64
env:
- CGO_ENABLED=1
- CC=aarch64-linux-gnu-gcc
- CXX=aarch64-linux-gnu-g++
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "SNAPSHOT-{{ .ShortCommit }}"
changelog:
disable: true
archives:
- wrap_in_directory: true
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}-v{{.Version}}-{{.Os}}-{{.Arch}}"
files:
- README.md
- LICENSE.txt
release:
github:
owner: anishathalye
name: periscope