forked from alexklibisz/elastiknn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
33 lines (30 loc) · 694 Bytes
/
Taskfile.yml
File metadata and controls
33 lines (30 loc) · 694 Bytes
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
version: '3'
vars:
VERSION:
sh: cat version
PROJECT_ROOT:
sh: pwd
GITHUB_URL: https://github.com/alexklibisz/elastiknn
CMD_GRADLE: "./gradlew --console=plain"
SITE_SSH_ALIAS: elastiknn-site
SITE_MAIN_DIR: elastiknn.com
SITE_ARCH_DIR: archive.elastiknn.com
includes:
jvm: Taskfile.jvm.yml
py:
taskfile: client-python/Taskfile.yml
dir: client-python
cluster:
taskfile: Taskfile.cluster.yml
docs:
taskfile: docs/Taskfile.yml
dir: docs
benchmarks:
taskfile: elastiknn-benchmarks/Taskfile.yml
dir: elastiknn-benchmarks
tasks:
clean:
desc: Call clean commands in included taskfiles
deps:
- jvm:clean
- py:clean