-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
.goreleaser.linux.arm64.yaml
47 lines (36 loc) · 1.41 KB
/
.goreleaser.linux.arm64.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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: sling
before:
hooks:
- go mod edit -dropreplace='github.com/flarco/g' go.mod
- go mod edit -dropreplace='github.com/slingdata-io/sling' go.mod
- go mod edit -droprequire='github.com/slingdata-io/sling' go.mod
- go mod tidy
builds:
- main: ./cmd/sling
env:
- CGO_ENABLED=1
tags:
- fts5
goarch:
- arm64
goos:
- linux
ldflags:
- "-X 'github.com/slingdata-io/sling-cli/core.Version={{.Version}}' -X 'github.com/slingdata-io/sling-cli/core/env.PlausibleURL={{.Env.PLAUSIBLE_URL}}' -X 'github.com/slingdata-io/sling-cli/core/env.SentryDsn={{.Env.SENTRY_DSN}}' -X 'github.com/slingdata-io/sling/agent.Version={{.Version}}'"
snapshot:
name_template: "{{ incpatch .Version }}"
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
checksum:
name_template: '{{ .Runtime.Goos }}.{{ .Runtime.Goarch }}.checksums.txt'
# Could figure out how to make arm64 work, pushing manually
# dockers:
# - dockerfile: 'cmd/sling/Dockerfile.arm64'
# image_templates:
# - "slingdata/sling:{{ .Tag }}-arm64"
release:
mode: replace
header: |
## Sling {{ .Tag }} ({{ .Date }})