-
Notifications
You must be signed in to change notification settings - Fork 4
/
.goreleaser.yaml
80 lines (76 loc) · 1.85 KB
/
.goreleaser.yaml
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
project_name: centralized-relay
env:
- CGO_ENABLED=1
- COSIGN_YES=true
builds:
- id: linux-amd64
main: ./main.go
hooks:
pre:
- wget https://github.com/CosmWasm/wasmvm/releases/download/{{ .Env.LIBWASM_VERSION }}/libwasmvm_muslc.x86_64.a -P /usr/lib/x86_64-linux-gnu
goos:
- linux
goarch:
- amd64
env:
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
flags:
- -mod=readonly
- -trimpath
ldflags:
- -s -w -X github.com/icon-project/centralized-relay/relayer.Version={{ .Tag }}
- -linkmode=external
- -extldflags '-Wl,-z,muldefs -lm'
tags:
- muslc
- netgo
- id: linux-arm64
main: ./main.go
hooks:
pre:
- wget https://github.com/CosmWasm/wasmvm/releases/download/{{ .Env.LIBWASM_VERSION }}/libwasmvm_muslc.aarch64.a -P /usr/lib/aarch64-linux-gnu
goos:
- linux
goarch:
- arm64
env:
- CC=aarch64-linux-gnu-gcc
flags:
- -mod=readonly
- -trimpath
ldflags:
- -s -w -X github.com/icon-project/centralized-relay/relayer.Version={{ .Tag }}
- -linkmode=external
- -extldflags "-static"
- -extldflags '-Wl,-z,muldefs -lm'
tags:
- muslc
- netgo
archives:
- id: golang-cross
builds:
- linux-amd64
- linux-arm64
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format: tar.gz
wrap_in_directory: true
checksum:
name_template: SHA256SUMS-{{.Version}}.txt
algorithm: sha256
release:
prerelease: auto
draft: false
make_latest: false
extra_files:
- glob: "./release/cosign.pub"
signs:
- cmd: cosign
stdin: "{{ .Env.COSIGN_PASSWORD }}"
args:
- "sign-blob"
- "${artifact}"
- "--key=env://COSIGN_PRIVATE_KEY"
- "--output-signature=${signature}"
- "--yes"
artifacts: all