forked from BitFunnel/NativeJIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.doozer.json
36 lines (35 loc) · 814 Bytes
/
.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
{
"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}",
"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"
]
}
},
"artifacts": [
"build-*/Testing/Temporary/LastTest.log"
]
}