forked from htcondor/osdf-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
184 lines (180 loc) · 4.96 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: osdf-client
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- "amd64"
- "arm64"
- "ppc64le"
id: "config_mgr"
dir: ./cmd/config_mgr
binary: osdf_config_mgr
tags:
- forceposix
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: ppc64le
- goos: darwin
goarch: ppc64le
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- "amd64"
- "arm64"
- "ppc64le"
id: "stashcp"
dir: ./cmd/stashcp
binary: stashcp
tags:
- forceposix
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: ppc64le
- goos: darwin
goarch: ppc64le
- env:
- CGO_ENABLED=0
main: ./cmd/stash_plugin
goos:
- linux
- windows
- darwin
goarch:
- "amd64"
- "arm64"
- "ppc64le"
id: "stash_plugin"
binary: stash_plugin
tags:
- forceposix
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: ppc64le
- goos: darwin
goarch: ppc64le
archives:
- id: osdf-client
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch
nfpms:
- package_name: condor-stash-plugin
builds:
- stash_plugin
file_name_template: '{{ .PackageName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
id: condor-stash-plugin
vendor: Open Science Grid
homepage: https://github.com/htcondor/osdf-client
maintainer: Derek Weitzel <[email protected]>
description: HTCondor file transfer plugin for the Open Science Data Federation
license: Apache 2.0
formats:
- deb
- rpm
bindir: /usr/libexec/condor
release: 1
section: default
priority: extra
overrides:
rpm:
contents:
- src: LICENSE.txt
dst: "/usr/share/doc/{{ .PackageName }}-{{ .Version }}/LICENSE.txt"
- src: README.md
dst: "/usr/share/doc/{{ .PackageName }}-{{ .Version }}/README.md"
- src: resources/10-stash-plugin.conf
dst: "/etc/condor/config.d/10-stash-plugin.conf"
type: config|noreplace
replacements:
amd64: x86_64
file_name_template: "{{ .PackageName }}-{{ .Version }}-{{ .Release }}.{{ .Arch }}"
deb:
contents:
- src: LICENSE.txt
dst: "/usr/share/doc/{{ .PackageName }}/LICENSE.txt"
- src: README.md
dst: "/usr/share/doc/{{ .PackageName }}/README.md"
- src: resources/10-stash-plugin.conf
dst: "/etc/condor/config.d/10-stash-plugin.conf"
type: config|noreplace
# The libexec directory is elsewhere on Debian; I haven't been able to move the binary so I'm making a symlink
- src: "/usr/libexec/condor/stash_plugin"
dst: "/usr/lib/condor/libexec/stash_plugin"
type: symlink
file_name_template: "{{ .PackageName }}-{{ .Version }}-{{ .Release }}_{{ .Arch }}"
- package_name: stashcp
builds:
- stashcp
file_name_template: '{{ .PackageName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
id: stashcp
vendor: Open Science Grid
homepage: https://github.com/htcondor/osdf-client
maintainer: Derek Weitzel <[email protected]>
description: Command-line copy tool for the Open Science Data Federation
license: Apache 2.0
formats:
- apk
- deb
- rpm
bindir: /usr/bin
release: 1
section: default
priority: extra
overrides:
rpm:
contents:
- src: LICENSE.txt
dst: "/usr/share/doc/{{ .PackageName }}-{{ .Version }}/LICENSE.txt"
- src: README.md
dst: "/usr/share/doc/{{ .PackageName }}-{{ .Version }}/README.md"
replacements:
amd64: x86_64
replaces:
- stashcache-client < 6.4.0
file_name_template: "{{ .PackageName }}-{{ .Version }}-{{ .Release }}.{{ .Arch }}"
deb:
file_name_template: "{{ .PackageName }}-{{ .Version }}-{{ .Release }}_{{ .Arch }}"
contents:
- src: LICENSE.txt
dst: "/usr/share/doc/{{ .PackageName }}/LICENSE.txt"
- src: README.md
dst: "/usr/share/doc/{{ .PackageName }}/README.md"