forked from alexklibisz/elastiknn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yaml
40 lines (37 loc) · 908 Bytes
/
Taskfile.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
version: '3'
vars:
VERSION:
sh: cat version
PROJECT_ROOT:
sh: pwd
GITHUB_URL: https://github.com/alexklibisz/elastiknn
MAVEN_URL: https://repo1.maven.org/maven2/com/klibisz/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: taskfiles/Taskfile.jvm.yaml
dir: .
cluster:
taskfile: taskfiles/Taskfile.cluster.yaml
dir: .
py:
taskfile: taskfiles/Taskfile.python.yaml
dir: client-python
docs:
taskfile: taskfiles/Taskfile.docs.yaml
dir: docs
benchmarks:
taskfile: taskfiles/Taskfile.benchmarks.yaml
dir: elastiknn-benchmarks
annb:
taskfile: taskfiles/Taskfile.annb.yaml
dir: ann-benchmarks
tasks:
clean:
desc: Call clean commands in included taskfiles
deps:
- jvm:clean
- py:clean