summaryrefslogtreecommitdiff
path: root/main/fixtures/arches.json
blob: 3747769cf8b7e201371899bbc4ec77a1dec1443b (plain)
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
[
{
    "pk": 1, 
    "model": "main.arch", 
    "fields": {
        "agnostic": true, 
        "name": "any", 
        "required_signoffs": 2
    }
},
{
    "pk": 2, 
    "model": "main.arch", 
    "fields": {
        "agnostic": false, 
        "name": "i686", 
        "required_signoffs": 1
    }
},
{
    "pk": 3, 
    "model": "main.arch", 
    "fields": {
        "agnostic": false, 
        "name": "x86_64", 
        "required_signoffs": 2
    }
},
{
    "pk": 4,
    "model": "main.arch",
    "fields": {
        "agnostic": false,
        "name": "armv7h",
        "required_signoffs": 1
    }
},
{
    "pk": 5,
    "model": "main.arch",
    "fields": {
        "agnostic": true,
        "name": "any (i686)",
        "required_signoffs": 1
    }
},
{
    "pk": 6,
    "model": "main.arch",
    "fields": {
        "agnostic": true,
        "name": "any (x86_64)",
        "required_signoffs": 1
    }
},
{
    "pk": 7,
    "model": "main.arch",
    "fields": {
        "agnostic": true,
        "name": "any (armv7h)",
        "required_signoffs": 1
    }
}
]