forked from BitFunnel/BitFunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.doozer.json
52 lines (51 loc) · 1.08 KB
/
.doozer.json
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
{
"targets": {
"xenial-amd64/gcc": {
"environment": {
"CC": "gcc",
"CXX": "g++"
},
"buildenv": "xenial-amd64",
"builddeps": ["build-essential", "cmake"],
"buildcmd": [
"./Configure_Make.sh",
"cd build-make",
"make -j ${PARALLEL}"
],
"testcmd": [
"make test"
]
},
"xenial-amd64/clang-3.8+ninja": {
"environment": {
"CC": "clang-3.8",
"CXX": "clang++-3.8"
},
"buildenv": "xenial-amd64",
"builddeps": ["build-essential", "clang-3.8", "cmake", "ninja-build"],
"buildcmd": [
"mkdir build-ninja",
"cd build-ninja",
"cmake -DCMAKE_BUILD_TYPE=RELEASE -G Ninja ..",
"ninja"
]
},
"osx": {
"buildenv": "osx",
"homebrew": {
"formulae": ["cmake"]
},
"buildcmd": [
"./Configure_Make.sh",
"cd build-make",
"make -j ${PARALLEL}"
],
"testcmd": [
"make test"
]
}
},
"artifacts": [
"build-*/Testing/Temporary/LastTest.log"
]
}