forked from ocaml-bench/sandmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
67 lines (59 loc) · 1.78 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
kind: pipeline
name: 4.10.0+stock+serial
platform:
os: linux
arch: amd64
steps:
- name: 4.10.0+stock
image: ocurrent/opam:ubuntu-18.04-ocaml-4.10
commands:
- sudo apt-get update && sudo apt-get -y install wget pkg-config libgmp-dev m4 libdw-dev jq python3-pip
- pip3 install intervaltree
- sudo chown -R opam .
- eval $(opam env)
- opam update
- opam install dune.2.6.0
- export ITER=1
- export OPAM_DISABLE_SANDBOXING=true
- make run_config_ci.json
- RUN_CONFIG_JSON=run_config_ci.json make ocaml-versions/4.10.0+stock.bench
---
kind: pipeline
name: 4.10.0+multicore+serial
platform:
os: linux
arch: amd64
steps:
- name: 4.10.0+multicore+serial
image: ocurrent/opam:ubuntu-18.04-ocaml-4.10
commands:
- sudo apt-get update && sudo apt-get -y install wget pkg-config libgmp-dev m4 libdw-dev jq python3-pip
- pip3 install intervaltree
- sudo chown -R opam .
- eval $(opam env)
- opam update
- opam install dune.2.6.0
- export ITER=1
- export OPAM_DISABLE_SANDBOXING=true
- make run_config_ci.json
- RUN_CONFIG_JSON=run_config_ci.json make ocaml-versions/4.10.0+multicore.bench
---
kind: pipeline
name: 4.10.0+multicore+parallel
platform:
os: linux
arch: amd64
steps:
- name: 4.10.0+multicore+parallel
image: ocurrent/opam:ubuntu-18.04-ocaml-4.10
commands:
- sudo apt-get update && sudo apt-get -y install wget pkg-config libgmp-dev m4 libdw-dev jq python3-pip
- pip3 install intervaltree
- sudo chown -R opam .
- eval $(opam env)
- opam update
- opam install dune.2.6.0
- export ITER=1
- export OPAM_DISABLE_SANDBOXING=true
- make multicore_parallel_run_config_macro_2domains_ci.json
- BUILD_BENCH_TARGET=multibench_parallel RUN_CONFIG_JSON=multicore_parallel_run_config_macro_2domains_ci.json make ocaml-versions/4.10.0+multicore.bench