forked from ava-labs/avalanche-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
41 lines (41 loc) · 1.1 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
# ref. https://goreleaser.com/customization/build/
builds:
- id: avalanche-cli
main: ./main.go
binary: avalanche
flags:
- -v
# windows is ignored by default, as the `goos` field by default only
# contains linux and darwin
ldflags:
- -X 'github.com/ava-labs/avalanche-cli/cmd.Version={{.Version}}'
- -X 'github.com/ava-labs/avalanche-cli/pkg/utils.telemetryToken={{ .Env.TELEMETRY_TOKEN }}'
goos:
- linux
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=1
- CGO_CFLAGS=-O -D__BLST_PORTABLE__ # Set the CGO flags to use the portable version of BLST
overrides:
- goos: linux
goarch: arm64
env:
- CC=aarch64-linux-gnu-gcc
- goos: darwin
goarch: arm64
env:
- CC=oa64-clang
- goos: darwin
goarch: amd64
goamd64: v1
env:
- CC=o64-clang
release:
# Repo in which the release will be created.
# Default is extracted from the origin remote URL or empty if its private hosted.
github:
owner: ava-labs
name: avalanche-cli