-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
278 lines (273 loc) · 23.5 KB
/
.gitlab-ci.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
# Stages run in sequential order, but jobs within stages run in parallel.
#
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
stages:
- build
- release
build:
stage: build
image: golang:latest
variables:
# Please edit to your GitLab project
REPO_NAME: gitlab.com/doctorfree/DriveCommandLine
# The problem is that to be able to use go get, one needs to put
# the repository in the $GOPATH. So for example if your gitlab domain
# is gitlab.com, and that your repository is namespace/project, and
# the default GOPATH being /go, then you'd need to have your
# repository in /go/src/gitlab.com/namespace/project
# Thus, making a symbolic link corrects this.
before_script:
- echo $CI_JOB_ID
- echo BUILD_JOB_ID=$CI_JOB_ID >> build.env
- cat VERSION >> build.env
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
- ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
- cd $GOPATH/src/$REPO_NAME
script:
- ./mkpkg
# This stage is only executed for new tags
only:
- tags
# The files which are to be made available in GitLab
artifacts:
paths:
- dist/*.deb
- dist/*.rpm
- dist/*.tgz
- dist/*.zip
reports:
dotenv: build.env
release:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- echo 'running release_job'
- echo 'Previous Job ID:'
- echo $BUILD_JOB_ID
- echo 'VERSION:'
- echo $VERSION
- echo 'RELEASE:'
- echo $RELEASE
# Specifying that this job requires artifacts from the previous job to succeed
needs:
- job: build
artifacts: true
release:
name: 'DriveCommandLine Version $VERSION release $RELEASE'
description: './pkg/release.md'
tag_name: 'v${VERSION}r${RELEASE}'
assets:
links:
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_386.deb - Linux 386 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_386.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.deb - Linux amd64 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.deb - Linux arm64 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.deb - Linux arm Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.deb - Linux mips64 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.deb - Linux mips64le Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.deb - Linux mips Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.deb - Linux mipsle Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.deb - Linux ppc64 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.deb - Linux ppc64le Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.deb - Linux riscv64 Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_s390x.deb - Linux s390x Debian format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_s390x.deb'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_386.rpm - Linux 386 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_386.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.rpm - Linux amd64 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.rpm - Linux arm64 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.rpm - Linux arm RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.rpm - Linux mips64le RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.rpm - Linux mips64 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.rpm - Linux mipsle RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.rpm - Linux mips RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.rpm - Linux ppc64le RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.rpm - Linux ppc64 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.rpm - Linux riscv64 RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_s390x.rpm - Linux s390x RPM format installation package'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_s390x.rpm'
link_type: 'package'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.aix_ppc64.tgz - AIX ppc64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.aix_ppc64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.android_amd64.tgz - Android amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.android_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.android_arm64.tgz - Android arm64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.android_arm64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.darwin_amd64.tgz - MacOS amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.darwin_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.darwin_arm64.tgz - MacOS arm64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.darwin_arm64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.dragonfly_amd64.tgz - Dragonfly amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.dragonfly_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_386.tgz - FreeBSD 386 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_386.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_amd64.tgz - FreeBSD amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm64.tgz - FreeBSD arm64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm.tgz - FreeBSD arm compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.illumos_amd64.tgz - Illumos amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.illumos_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.js_wasm.tgz - JS wasm compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.js_wasm.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_386.tgz - Linux 386 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_386.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.tgz - Linux amd64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.tgz - Linux arm64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.tgz - Linux arm compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.tgz - Linux mips64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.tgz - Linux mips64le compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.tgz - Linux mips compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.tgz - Linux mipsle compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.tgz - Linux ppc64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.tgz - Linux ppc64le compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.tgz - Linux riscv64 compressed tar format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.tgz'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.aix_ppc64.zip - AIX ppc64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.aix_ppc64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.android_amd64.zip - Android amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.android_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.android_arm64.zip - Android arm64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.android_arm64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.darwin_amd64.zip - MacOS amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.darwin_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.darwin_arm64.zip - MacOS arm64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.darwin_arm64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.dragonfly_amd64.zip - Dragonfly amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.dragonfly_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_386.zip - FreeBSD 386 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_386.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_amd64.zip - FreeBSD amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm64.zip - FreeBSD arm64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm.zip - FreeBSD arm zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.freebsd_arm.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.illumos_amd64.zip - Illumos amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.illumos_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.js_wasm.zip - JS wasm zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.js_wasm.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_386.zip - Linux 386 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_386.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.zip - Linux amd64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_amd64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.zip - Linux arm64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.zip - Linux arm zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_arm.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.zip - Linux mips64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.zip - Linux mips64le zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips64le.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.zip - Linux mips zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mips.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.zip - Linux mipsle zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_mipsle.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.zip - Linux ppc64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.zip - Linux ppc64le zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_ppc64le.zip'
link_type: 'other'
- name: 'DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.zip - Linux riscv64 zip format distribution archive'
url: 'https://gitlab.com/doctorfree/DriveCommandLine/-/jobs/${BUILD_JOB_ID}/artifacts/file/dist/DriveCommandLine_${VERSION}-${RELEASE}.linux_riscv64.zip'
link_type: 'other'
only:
- tags