-
Notifications
You must be signed in to change notification settings - Fork 58
/
.drone.yml
30 lines (28 loc) · 894 Bytes
/
.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
kind: pipeline
type: docker
name: default
steps:
- name: build
image: ryanmarcus/sosd:v0
volumes:
- name: cache
path: /tmp/cache
- name: scratch
path: /tmp/scratch
commands:
- ln -s /tmp/cache data
- ln -s /tmp/cache/rmi.tar.zst rmi.tar.zst
- ln -s /tmp/scratch rmi_data
- scripts/download.sh
- scripts/download_rmis.sh
- scripts/prepare.sh
- build/benchmark data/books_200M_uint64 data/books_200M_uint64_equality_lookups_1M
- build/benchmark data/fb_200M_uint64 data/fb_200M_uint64_equality_lookups_1M
- build/benchmark data/osm_cellids_200M_uint64 data/osm_cellids_200M_uint64_equality_lookups_1M
- build/benchmark data/wiki_ts_200M_uint64 data/wiki_ts_200M_uint64_equality_lookups_1M
volumes:
- name: cache
host:
path: /media/Berrik/sosd_cache
- name: scratch
temp: {}