-
Notifications
You must be signed in to change notification settings - Fork 54
/
.goreleaser.yml
38 lines (38 loc) · 970 Bytes
/
.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
# ref. https://goreleaser.com/customization/build/
builds:
- id: avalanche-network-runner
main: ./main.go
binary: avalanche-network-runner
flags:
- -v
ldflags:
- -X 'github.com/ava-labs/avalanche-network-runner/cmd.Version={{.Version}}'
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-network-runner