-
Notifications
You must be signed in to change notification settings - Fork 2
/
freshen.json
71 lines (70 loc) · 1.5 KB
/
freshen.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
67
68
69
70
{
"update_tasks": [
{
"name": "piped-backend",
"attr_path": "piped-backend",
"inputs": [
"piped-backend-src"
],
"derived_hashes": [{
"attr_path": "piped-backend.depsUpdate",
"filename": "piped-backend/deps-hash.json"
}],
"tests": [{
"attr_path": "piped-backend-test",
"disable_sandbox": true
}]
},
{
"name": "piped-frontend",
"attr_path": "piped-frontend",
"inputs": [
"piped-frontend-src"
],
"derived_hashes": [{
"attr_path": "piped-frontend.hashUpdate",
"filename": "piped-frontend/npmDepsHash.json"
}],
"tests": [{
"attr_path": "piped-frontend-test",
"disable_sandbox": true
}]
},
{
"name": "piped-proxy",
"attr_path": "piped-proxy",
"inputs": [
"piped-proxy-src"
],
"derived_hashes": [{
"attr_path": "piped-proxy.cargoUpdate",
"filename": "piped-proxy/cargo-hash.json"
}],
"tests": [{
"attr_path": "piped-proxy-test"
}]
},
{
"name": "nixpkgs",
"inputs": [
"nixpkgs"
],
"tests": [{
"attr_path": "piped-test",
"disable_sandbox": true
}]
},
{
"name": "piped",
"tests": [{
"attr_path": "piped-test",
"disable_sandbox": true
}],
"required_update_tasks": [
"piped-proxy",
"piped-backend",
"piped-frontend"
]
}
]
}