-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy path.drone.yml
559 lines (509 loc) · 12.2 KB
/
.drone.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
kind: pipeline
type: docker
name: default
workspace:
base: /go
path: src/github.com/helix-ml/helix
steps:
- name: build-backend
image: golang:1.23.4-alpine3.21
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- go build
depends_on: []
- name: build-frontend
image: node:21-alpine
commands:
- cd frontend
- yarn install
- yarn build
depends_on: []
- name: run-linter
image: golangci/golangci-lint:v1.62-alpine
commands:
- golangci-lint run
when:
event:
- push
depends_on: []
- name: unit-test
image: golang:1.23.4-alpine3.21
environment:
OPENAI_API_KEY:
from_secret: openai_tools
TOGETHER_API_KEY:
from_secret: openai_api_key
TOGETHER_BASE_URL:
from_secret: openai_base_url
# Database config (running in a sidecar)
POSTGRES_HOST: postgres
POSTGRES_PORT: "5432"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DATABASE: postgres
TYPESENSE_URL: http://typesense:8108
TYPESENSE_API_KEY: typesense
TEXT_EXTRACTION_TIKA_URL: http://tika:9998
RAG_CRAWLER_LAUNCHER_URL: http://chrome:7317
commands:
- go test -v ./...
when:
event:
- push
depends_on: []
- name: release-backend
image: golang:1.23.4-bullseye
when:
event:
- tag
- push
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- go install github.com/mitchellh/gox@latest
- |
if [ -n "$DRONE_TAG" ]; then
VERSION_FLAG="-X github.com/helixml/helix/api/pkg/data.Version=$DRONE_TAG"
else
VERSION_FLAG=""
fi
CGO_ENABLED=0 gox -osarch="linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 windows/amd64" -ldflags "-extldflags '-static' $VERSION_FLAG" -output="helix-{{.OS}}-{{.Arch}}"
- ./helix-linux-amd64 version
- apt-get update && apt-get install -y curl
- curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
- echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
- apt-get update && apt-get install -y gh
- sed -i "s/:latest/:$DRONE_TAG/g" docker-compose.yaml
- |
if [ -n "$DRONE_TAG" ]; then
RELEASE=$(gh release list | grep "^$DRONE_TAG" | head -n 1 | awk '{print $1}')
if [ -n "$RELEASE" ]; then
echo "Uploading helix binaries, installer, and docker-compose.yaml to release $RELEASE"
gh release upload "$RELEASE" helix-linux-amd64 helix-linux-arm64 helix-darwin-amd64 helix-darwin-arm64 helix-windows-amd64.exe docker-compose.yaml
else
echo "No matching release found for tag $DRONE_TAG"
fi
else
echo "No tag present, skipping release upload"
fi
depends_on: [build-backend, build-frontend]
- name: build-operator
image: golang:1.23.4-alpine3.21
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- cd operator && go build ./...
depends_on: []
- name: run-linter-operator
image: golangci/golangci-lint:v1.62-alpine
commands:
- cd operator && golangci-lint run
when:
event:
- push
depends_on: []
services:
- name: postgres
image: postgres:12.13-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
- name: typesense
image: typesense/typesense:27.0
command: ["--data-dir", "/tmp", "--api-key", "typesense"]
- name: tika
image: apache/tika:2.9.2.1
- name: chrome
image: ghcr.io/go-rod/rod:v0.115.0
---
kind: pipeline
type: docker
name: build-controlplane
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-image
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/controlplane
username: admin
password:
from_secret: helix_registry_password
build_args:
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-runner
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-runner
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.runner
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/runner
build_args:
# Runner with no baked models = empty
# See https://github.com/helixml/base-images
# and https://github.com/helixml/base-images/releases
- TAG=2024-12-07a-empty
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-runner-small
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-runner
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.runner
tags:
- "${DRONE_TAG:-main}-small" # Default to branch
- "latest-small"
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/runner
build_args:
# Runner with small models = small
# See https://github.com/helixml/base-images
# and https://github.com/helixml/base-images/releases
- TAG=2024-12-07a-small
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- name: publish-runner-branch
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.runner
tags:
- "${DRONE_COMMIT_SHA:-main}-small" # Default to branch
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/runner
build_args:
# Runner with small models = small
# See https://github.com/helixml/base-images
# and https://github.com/helixml/base-images/releases
- TAG=2024-12-07a-small
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
exclude:
- main
event:
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-runner-large
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-runner
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.runner
tags:
- "${DRONE_TAG:-main}-large"
- "latest-large"
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/runner
build_args:
# Runner with large models = large
# See https://github.com/helixml/base-images
# and https://github.com/helixml/base-images/releases
- TAG=2024-12-07a-large
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- name: publish-runner-branch
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.runner
tags:
- "${DRONE_COMMIT_SHA:-main}-large"
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/runner
build_args:
# Runner with large models = large
# See https://github.com/helixml/base-images
# and https://github.com/helixml/base-images/releases
- TAG=2024-12-07a-large
- APP_VERSION=${DRONE_TAG:-${DRONE_COMMIT_SHA:-latest}}
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
exclude:
- main
event:
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-gptscript-runner
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-image
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.gptscript
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/gptscript-runner
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-gptscript_devserver
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-gptscript_devserver
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.gptscript_devserver
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/gptscript_devserver
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-typesense_baked_models
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-typesense_baked_models
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.typesense
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/typesense
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: build-demos
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
steps:
- name: publish-demos
image: plugins/docker
pull: always
settings:
dockerfile: Dockerfile.demos
auto_tag: true
daemon_off: true
registry: registry.helix.ml
repo: registry.helix.ml/helix/demos
username: admin
password:
from_secret: helix_registry_password
volumes:
- name: dockersocket
path: /var/run/docker.sock
when:
branch:
- main
event:
- tag
- push
depends_on:
- default
---
kind: pipeline
type: docker
name: smoke-test
workspace:
base: /go
path: src/github.com/helix-ml/helix
trigger:
event:
- cron
cron:
- smoke-test-hourly
- developer
# To run this manually, create a new cron job in Drone called developer and pointing to your-branch-name .
# Then send a curl request to:
# curl --request POST \
# --url 'https://drone.lukemarsden.net/api/repos/helixml/helix/cron/developer?branch=your-branch-name' \
# --header 'Authorization: Bearer XXXXXX'
steps:
- name: smoke-test-saas
image: golang:1.23.4-alpine3.21
environment:
BROWSER_URL: http://chrome:7317
SERVER_URL: https://app.tryhelix.ai
HELIX_USER: [email protected]
HELIX_PASSWORD:
from_secret: smoke_test_helix_password
volumes:
- name: integration-test
path: /integration-test
commands:
- apk add --no-cache curl bash openssl
- cp -r integration-test/* /integration-test
- go test -timeout 600s -tags=integration -v ./integration-test/smoke
depends_on: []
- name: slack-notification
image: plugins/slack
settings:
webhook:
from_secret: JANITOR_SLACK_WEBHOOK_URL
channel: helix-janitor
# See the slack formatting docs: https://api.slack.com/reference/surfaces/formatting
message: "❌ Smoke test failed (<@U010X78FM18>). (<https://drone.lukemarsden.net/helixml/helix/${DRONE_BUILD_NUMBER}|Build>)"
when:
status:
- failure
volumes:
- name: integration-test
temp: {}
services:
- name: chrome
image: ghcr.io/go-rod/rod:v0.115.0
volumes:
- name: integration-test
path: /integration-test