forked from rilldata/rill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
118 lines (104 loc) · 2.66 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
version: 2
project_name: rill
release:
prerelease: auto
draft: false
before:
hooks:
- docker login -u {{ .Env.DOCKERHUB_USER }} -p {{ .Env.DOCKERHUB_PASS }}
builds:
- id: darwin_amd64
main: ./cli/main.go
binary: rill
goos:
- darwin
goarch:
- amd64
env:
- PKG_CONFIG_SYSROOT_DIR=/sysroot/macos/amd64
- PKG_CONFIG_PATH=/sysroot/macos/amd64/usr/local/lib/pkgconfig
- CC=o64-clang
- CXX=o64-clang++
flags:
- "-mod=readonly"
ldflags:
- -s -w -X main.Version={{.Version}} -X main.Commit={{.ShortCommit}} -X main.BuildDate={{.Date}}
- id: darwin_arm64
main: ./cli/main.go
binary: rill
goos:
- darwin
goarch:
- arm64
env:
- PKG_CONFIG_SYSROOT_DIR=/sysroot/macos/amd64
- PKG_CONFIG_PATH=/sysroot/macos/amd64/usr/local/lib/pkgconfig
- CC=oa64-clang
- CXX=oa64-clang++
flags:
- "-mod=readonly"
ldflags:
- -s -w -X main.Version={{.Version}} -X main.Commit={{.ShortCommit}} -X main.BuildDate={{.Date}}
- id: linux
main: ./cli/main.go
binary: rill
goos:
- linux
goarch:
- amd64
env:
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
- CGO_CFLAGS=--sysroot=/sysroot/linux/amd64
- CGO_LDFLAGS=--sysroot=/sysroot/linux/amd64
- PKG_CONFIG_SYSROOT_DIR=/sysroot/linux/amd64
- PKG_CONFIG_PATH=/sysroot/linux/amd64/usr/local/lib/pkgconfig
flags:
- "-mod=readonly"
ldflags:
- -s -w -X main.Version={{.Version}} -X main.Commit={{.ShortCommit}} -X main.BuildDate={{.Date}}
blobs:
- provider: gs
bucket: prod-cdn.rilldata.com
directory: "rill/v{{ .Version }}"
extra_files:
- glob: ./dist/**/*
- provider: gs
bucket: prod-cdn.rilldata.com
directory: "rill/latest"
extra_files:
- glob: ./dist/**/*
brews:
- homepage: https://github.com/rilldata/rill
description: The Rill CLI
name: rill
license: Apache 2.0
url_template: https://cdn.rilldata.com/rill/{{ .Tag }}/{{ .ArtifactName }}
repository:
owner: rilldata
name: homebrew-tap
branch: main
token: "{{ .Env.GITHUB_TOKEN }}"
test: |
system "#{bin}/rill --version"
install: |
bin.install "rill"
commit_author:
name: rilldata
email: [email protected]
dockers:
- image_templates:
- rilldata/rill:latest
- rilldata/rill:{{ .Tag }}
archives:
- files:
- README.md
- LICENSE*
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
format: zip
checksum:
name_template: checksums.txt
snapshot:
name_template: "{{ incminor .Version }}-nightly"
changelog:
sort: asc