-
Notifications
You must be signed in to change notification settings - Fork 26
/
.gitlab-ci.yml
69 lines (60 loc) · 1.62 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
before_script:
- python -V # Print out python version for debugging
- pip --cache-dir=.pip install toml
- git config --global user.email "[email protected]"
- git config --global user.name "wxd"
- git submodule sync
# - git fetch --recurse-submodules
- git submodule update --init
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- deps/
- .pip
# run tests using the binary built before
test_xml:
stage: test
tags:
- rdma
script:
- cd x_ml; ./test.sh
test_xkv:
stage: test
tags:
- rdma
script:
- cd xkv_core; ./test.sh
test_xcache:
stage: test
tags:
- rdma
script:
- cd xcache; ./test.sh
- ./test_sampler
- ./test_rmi;
- ./test_rmi_t;
- ./test_logic;
- ./test_dispatcher;
bench:
stage: test
tags:
- rdma
script:
- ./magic.py config -f build-config.toml
- cmake .; make;
################################################
# test_xcomm: #
# stage: test #
# tags: #
# - rdma #
# #
# cache: #
# key: "boost" #
# #
# script: #
# - cd xcomm; ./test.sh #
# #
# before_script: #
# - ./magic.py config -f build-config.toml #
# - cmake .; make boost #
################################################