This repository has been archived by the owner on Jun 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.doozer.json
66 lines (66 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"targets": {
//"precise-i386": {
// "buildenv": "precise-i386",
// "buildcmd": [
// "sudo apt-get install python-software-properties -y",
// "sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y",
// "sudo apt-get update -q",
// "sudo apt-get --yes --force-yes install gcc-4.8 g++-4.8 libgtest-dev cmake wget",
// "sh ./doozer/doozer_ubuntu.sh 1"
// ]
//},
//"precise-amd64": {
// "buildenv": "precise-amd64",
// "buildcmd": [
// "sudo apt-get install python-software-properties -y",
// "sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y",
// "sudo apt-get update -q",
// "sudo apt-get --yes --force-yes install gcc-4.8 g++-4.8 libgtest-dev cmake wget",
// "sh ./doozer/doozer_ubuntu.sh 0"
// ]
//},
"trusty-i386": {
"buildenv": "trusty-i386",
"builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
"buildcmd": [
"sh ./doozer/doozer_ubuntu.sh 1"
]
},
"trusty-amd64": {
"buildenv": "trusty-amd64",
"builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
"buildcmd": [
"sh ./doozer/doozer_ubuntu.sh 0"
]
},
"xenial-i386": {
"buildenv": "xenial-i386",
"builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
"buildcmd": [
"sh ./doozer/doozer_ubuntu.sh 1"
]
},
"xenial-amd64": {
"buildenv": "xenial-amd64",
"builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
"buildcmd": [
"sh ./doozer/doozer_ubuntu.sh 0"
]
//},
//"xenial-armhf": {
// "buildenv": "xenial-armhf",
// "builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
// "buildcmd": [
// "sh ./doozer/doozer_ubuntu.sh 1"
// ]
//},
//"xenial-arm64": {
// "buildenv": "xenial-arm64",
// "builddeps": ["gcc-4.8", "g++-4.8", "libgtest-dev", "cmake", "wget"],
// "buildcmd": [
// "sh ./doozer/doozer_ubuntu.sh 0"
// ]
}
}
}